11 lines
294 B
Java
11 lines
294 B
Java
package obix.contracts;
|
|
|
|
import obix.Abstime;
|
|
import obix.IObj;
|
|
|
|
public interface StatefulAlarm extends IObj, Alarm {
|
|
public static final String normalTimestampContract = "<abstime name='normalTimestamp' val='1969-12-31T19:00:00.000-05:00' null='true'/>";
|
|
|
|
Abstime normalTimestamp();
|
|
}
|