Mercurial Hosting > luan
comparison src/org/eclipse/jetty/util/component/AbstractLifeCycle.java @ 820:8e9db0bbf4f9
remove org.eclipse.jetty.util.log and upgrade slf4j
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 13 Sep 2016 23:13:06 -0600 |
parents | 3428c60d7cfc |
children | 5dfb10ec0ca5 |
comparison
equal
deleted
inserted
replaced
819:17bd0b170ed6 | 820:8e9db0bbf4f9 |
---|---|
18 | 18 |
19 package org.eclipse.jetty.util.component; | 19 package org.eclipse.jetty.util.component; |
20 | 20 |
21 import java.util.concurrent.CopyOnWriteArrayList; | 21 import java.util.concurrent.CopyOnWriteArrayList; |
22 | 22 |
23 import org.eclipse.jetty.util.log.Log; | 23 import org.slf4j.Logger; |
24 import org.eclipse.jetty.util.log.Logger; | 24 import org.slf4j.LoggerFactory; |
25 | 25 |
26 /** | 26 /** |
27 * Basic implementation of the life cycle interface for components. | 27 * Basic implementation of the life cycle interface for components. |
28 * | 28 * |
29 * | 29 * |
30 */ | 30 */ |
31 public abstract class AbstractLifeCycle implements LifeCycle | 31 public abstract class AbstractLifeCycle implements LifeCycle |
32 { | 32 { |
33 private static final Logger LOG = Log.getLogger(AbstractLifeCycle.class); | 33 private static final Logger LOG = LoggerFactory.getLogger(AbstractLifeCycle.class); |
34 public static final String STOPPED="STOPPED"; | 34 public static final String STOPPED="STOPPED"; |
35 public static final String FAILED="FAILED"; | 35 public static final String FAILED="FAILED"; |
36 public static final String STARTING="STARTING"; | 36 public static final String STARTING="STARTING"; |
37 public static final String STARTED="STARTED"; | 37 public static final String STARTED="STARTED"; |
38 public static final String STOPPING="STOPPING"; | 38 public static final String STOPPING="STOPPING"; |