1 22 package javax.xml.registry; 23 24 28 public interface JAXRResponse 29 { 30 public static final int STATUS_FAILURE = 2; 31 public static final int STATUS_SUCCESS = 0; 32 public static final int STATUS_UNAVAILABLE = 3; 33 public static final int STATUS_WARNING = 1; 34 35 public String getRequestId() throws JAXRException ; 36 public int getStatus() throws JAXRException ; 37 public boolean isAvailable() throws JAXRException ; 38 } 39 | Popular Tags |