47,6 → 47,7 |
public static final String SERVICE_NAME = "DateService"; |
final String OPERATION_GETDATE = "getDate"; |
final String OPERATION_GETTIMESTAMP = "getTimestamp"; |
final String OPERATION_GETTIMESTAMP2 = "getTimestamp2"; |
final String OPERATION_GETINTIMEZONE = "getInTimezone"; |
final String OPERATION_FORMATDATE = "formatDate"; |
final String OPERATION_FORMATDATEADVANCED = "formatDateAdvanced"; |
81,6 → 82,15 |
@WebMethod(operationName=OPERATION_GETTIMESTAMP) |
@WSDLDocumentation(value="Get milliseconds since 01.01.1970 (Unix timestap).") |
public abstract BigInteger getTimestamp(); |
|
/** |
* Get seconds since 01.01.1970. |
* |
* @return timestamp seconds |
*/ |
@WebMethod(operationName=OPERATION_GETTIMESTAMP2) |
@WSDLDocumentation(value="Get seconds since 01.01.1970 (Unix timestap).") |
public abstract BigInteger getTimestamp2(); |
|
/** |
* Display a date time with a different time zone. |