16 lines
302 B
Java
Executable File
16 lines
302 B
Java
Executable File
package org.undp.weblog;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
/**
|
|
* @author Peter Kopunec
|
|
*/
|
|
public interface WebLogConstants {
|
|
|
|
public static final String PARAM_WEBLOG_DETAIL_ID = "wld_id";
|
|
|
|
public static final SimpleDateFormat dateTimeFormat = new SimpleDateFormat(
|
|
"MM/dd/yyyy HH:mm:ss");
|
|
|
|
}
|