1 22 package javax.xml.registry.infomodel; 23 24 import javax.xml.registry.JAXRException ; 25 26 30 public interface Versionable 31 { 32 public int getMajorVersion() throws JAXRException ; 33 public int getMinorVersion() throws JAXRException ; 34 public String getUserVersion() throws JAXRException ; 35 public void setMajorVersion(int majorVersion) throws JAXRException ; 36 public void setMinorVersion(int minorVersion) throws JAXRException ; 37 public void setUserVersion(String userVersion) throws JAXRException ; 38 } 39 | Popular Tags |