Author: mattsicker
Date: Thu Aug 28 05:21:49 2014
New Revision: 1621040
URL: http://svn.apache.org/r1621040
Log:
Revert "Convert Constants into an interface."
This reverts commit e7f2f43a715d8216f2d6fe78201e9e0adfacb606.
Modified:
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Constants.java
Modified:
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Constants.java
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Constants.java?rev=1621040&r1=1621039&r2=1621040&view=diff
==============================================================================
---
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Constants.java
(original)
+++
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/Constants.java
Thu Aug 28 05:21:49 2014
@@ -21,32 +21,38 @@ import org.apache.logging.log4j.util.Pro
/**
* Log4j Constants.
*/
-public interface Constants {
+public final class Constants {
/**
* Name of the system property to use to identify the LogEvent factory.
*/
- String LOG4J_LOG_EVENT_FACTORY = "Log4jLogEventFactory";
+ public static final String LOG4J_LOG_EVENT_FACTORY =
"Log4jLogEventFactory";
/**
* Name of the system property to use to identify the ContextSelector
Class.
*/
- String LOG4J_CONTEXT_SELECTOR = "Log4jContextSelector";
+ public static final String LOG4J_CONTEXT_SELECTOR = "Log4jContextSelector";
- String LOG4J_DEFAULT_STATUS_LEVEL = "Log4jDefaultStatusLevel";
+ public static final String LOG4J_DEFAULT_STATUS_LEVEL =
"Log4jDefaultStatusLevel";
/**
* JNDI context name string literal.
*/
- String JNDI_CONTEXT_NAME = "java:comp/env/log4j/context-name";
+ public static final String JNDI_CONTEXT_NAME =
"java:comp/env/log4j/context-name";
/**
* Line separator.
*/
- String LINE_SEPARATOR =
PropertiesUtil.getProperties().getStringProperty("line.separator", "\n");
+ public static final String LINE_SEPARATOR =
PropertiesUtil.getProperties().getStringProperty("line.separator", "\n");
/**
* Number of milliseconds in a second.
*/
- int MILLIS_IN_SECONDS = 1000;
+ public static final int MILLIS_IN_SECONDS = 1000;
+
+ /**
+ * Prevent class instantiation.
+ */
+ private Constants() {
+ }
}