1 22 package javax.xml.registry.infomodel; 23 24 import java.util.Date ; 25 import javax.xml.registry.JAXRException ; 26 27 31 public interface RegistryEntry 32 extends RegistryObject , Versionable 33 { 34 public static final int STABILITY_DYNAMIC=0; 35 public static final int STABILITY_DYNAMIC_COMPATIBLE=1; 36 public static final int STABILITY_STATIC=2; 37 public static final int STATUS_APPROVED=1; 38 public static final int STATUS_DEPRECATED=2; 39 public static final int STATUS_SUBMITTED=0; 40 public static final int STATUS_WITHDRAWN=3; 41 42 public Date getExpiration() throws JAXRException ; 43 public int getStability() throws JAXRException ; 44 public int getStatus() throws JAXRException ; 45 public void setExpiration(Date expiration) throws JAXRException ; 46 public void setStability(int stability) throws JAXRException ; 47 48 } 49 | Popular Tags |