2026-03-17 13:31:18 -07:00

27 lines
362 B
Java

package obix.contracts;
import obix.Abstime;
import obix.IObj;
import obix.Str;
import obix.Uri;
public interface About extends IObj {
Str obixVersion();
Str productName();
Uri productUrl();
Str productVersion();
Abstime serverBootTime();
Str serverName();
Abstime serverTime();
Str vendorName();
Uri vendorUrl();
}