public interface Slot
A RegistryObject may have 0 or more Slots. A slot is composed of a name, a slotType and a collection of values. The name of a slot is locally unique within the RegistryObject instance. Similarly, the value of a Slot is locally unique within a slot instance. Since a Slot represents an extensible attribute whose value may be a collection, a Slot is allowed to have a collection of values rather than a single value. The slotType attribute may optionally specify a type or category for the slot.
ExtensibleObject| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
ADDRESS_LINES_SLOT
Name for pre-defined Slot used in PostalAddress by Jakarta XML Registries UDDI provider.
|
static java.lang.String |
AUTHORIZED_NAME_SLOT
Name for pre-defined Slot used in Organization and ClassificationScheme by Jakarta XML Registries UDDI provider.
|
static java.lang.String |
OPERATOR_SLOT
Name for pre-defined Slot used in Organization and ClassificationScheme by Jakarta XML Registries UDDI provider.
|
static java.lang.String |
SORT_CODE_SLOT
Name for pre-defined Slot used in PostalAddress by Jakarta XML Registries UDDI provider.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
Gets the name for this Slot.
|
java.lang.String |
getSlotType()
Gets the slotType for this Slot.
|
java.util.Collection |
getValues()
Gets the values for this Slot.
|
void |
setName(java.lang.String name)
Sets the name for this Slot.
|
void |
setSlotType(java.lang.String slotType)
Sets the slotType for this Slot.
|
void |
setValues(java.util.Collection values)
Sets the values for this Slot.
|
static final java.lang.String SORT_CODE_SLOT
static final java.lang.String ADDRESS_LINES_SLOT
static final java.lang.String AUTHORIZED_NAME_SLOT
static final java.lang.String OPERATOR_SLOT
java.lang.String getName()
throws JAXRException
JAXRException - If the Jakarta XML Registries provider encounters an internal errorvoid setName(java.lang.String name)
throws JAXRException
name - the nameJAXRException - If the Jakarta XML Registries provider encounters an internal errorjava.lang.String getSlotType()
throws JAXRException
JAXRException - If the Jakarta XML Registries provider encounters an internal errorvoid setSlotType(java.lang.String slotType)
throws JAXRException
slotType - the slot type which is an arbitrary StringJAXRException - If the Jakarta XML Registries provider encounters an internal errorjava.util.Collection getValues()
throws JAXRException
JAXRException - If the Jakarta XML Registries provider encounters an internal errorStringvoid setValues(java.util.Collection values)
throws JAXRException
values - the values for this SlotJAXRException - If the Jakarta XML Registries provider encounters an internal error