1 22 package javax.xml.registry.infomodel; 23 24 import java.util.Collection ; 25 import javax.xml.registry.JAXRException ; 26 27 31 public interface Slot 32 { 33 public static final String ADDRESS_LINES_SLOT="addressLines"; 34 public static final String AUTHORIZED_NAME_SLOT="authorizedName"; 35 public static final String OPERATOR_SLOT="operator"; 36 public static final String SORT_CODE_SLOT="sortCode"; 37 38 public String getName() throws JAXRException ; 39 public String getSlotType() throws JAXRException ; 40 public Collection getValues() throws JAXRException ; 41 public void setName(String name) throws JAXRException ; 42 public void setSlotType(String type) throws JAXRException ; 43 public void setValues(Collection values) throws JAXRException ; 44 45 } 46 | Popular Tags |