Uses of Class
javax.xml.registry.JAXRException

Packages that use JAXRException
javax.xml.registry This package and its sub-packages describe the API classes and interfaces for the JAXR API. 
javax.xml.registry.infomodel This package describes the information model for JAXR API. 
 

Uses of JAXRException in javax.xml.registry
 

Subclasses of JAXRException in javax.xml.registry
 class DeleteException
          A RegistryException that occurs during a delete action.
 class FindException
          A RegistryException that occurs during a find action.
 class InvalidRequestException
          This exception is thrown when a JAXR client attempts to invoke an API method that is not valid for some reason.
 class RegistryException
          This is the common base class for all Exceptions that are detected on the registry provider side rather than the JAXR client side.
 class SaveException
          A RegistryException that occurs during a save action.
 class UnexpectedObjectException
          This exception is thrown when the JAXR provider finds a Object that is out-of-place or of the wrong type within the context of a user request.
 class UnsupportedCapabilityException
          This exception must be thrown when a JAXR client attempts to invoke an API method that is not supported by the capability profile that is supported by the JAXR provider.
 

Methods in javax.xml.registry that throw JAXRException
 java.lang.String JAXRResponse.getRequestId()
          Returns the unique id for the request that generated this response.
 int JAXRResponse.getStatus()
          Returns the status for this response.
 boolean JAXRResponse.isAvailable()
          Returns true if a response is available, false otherwise.
abstract  void ConnectionFactory.setProperties(java.util.Properties properties)
          Sets the Properties used during createConnection and createFederatedConnection calls.
abstract  java.util.Properties ConnectionFactory.getProperties()
          Gets the Properties used during createConnection and createFederatedConnection calls.
abstract  Connection ConnectionFactory.createConnection()
          Create a named connection.
abstract  FederatedConnection ConnectionFactory.createFederatedConnection(java.util.Collection connections)
          Create a FederatedConnection.
static ConnectionFactory ConnectionFactory.newInstance()
          Creates a default ConnectionFactory object.
 boolean JAXRException.isAvailable()
          Returns true if a response is available, false otherwise.
 Key RegistryException.getErrorObjectKey()
          Gets the Key to the first object that encountered an error in the registry.
 void RegistryException.setErrorObjectKey(Key key)
          Sets the Key to the first object that encountered an error in the registry.
 java.lang.Object LifeCycleManager.createObject(java.lang.String interfaceName)
          Creates instances of information model interfaces (factory method).
 Association LifeCycleManager.createAssociation(RegistryObject targetObject, Concept associationType)
          Creates an Association instance using the specified parameters.
 Classification LifeCycleManager.createClassification(ClassificationScheme scheme, java.lang.String name, java.lang.String value)
          Creates a Classification instance for an external Classification using the specified String name and String value that identify a taxonomy element within the specified ClassificationScheme.
 Classification LifeCycleManager.createClassification(ClassificationScheme scheme, InternationalString name, java.lang.String value)
          Creates a Classification instance for an external Classification using the specified InternationalString name and String value that identify a taxonomy element within the specified ClassificationScheme.
 Classification LifeCycleManager.createClassification(Concept concept)
          Creates a Classification instance for an internal Classification using the specified Concept that identifies a taxonomy element within an internal ClassificationScheme.
 ClassificationScheme LifeCycleManager.createClassificationScheme(java.lang.String name, java.lang.String description)
          Creates a ClassificationScheme given the specified String parameters.
 ClassificationScheme LifeCycleManager.createClassificationScheme(InternationalString name, InternationalString description)
          Creates a ClassificationScheme given the specified InternationalString parameters.
 ClassificationScheme LifeCycleManager.createClassificationScheme(Concept concept)
          Creates a ClassificationScheme from a Concept that has no ClassificationScheme or parent Concept.
 Concept LifeCycleManager.createConcept(RegistryObject parent, java.lang.String name, java.lang.String value)
          Creates a Concept instance using the specified parameters, where the name is a String.
 Concept LifeCycleManager.createConcept(RegistryObject parent, InternationalString name, java.lang.String value)
          Creates a Concept instance using the specified parameters, where the name is an InternationalString.
 EmailAddress LifeCycleManager.createEmailAddress(java.lang.String address)
          Creates an EmailAddress instance using an address as the parameter.
 EmailAddress LifeCycleManager.createEmailAddress(java.lang.String address, java.lang.String type)
          Creates an EmailAddress instance using both an address and a type as parameters.
 ExternalIdentifier LifeCycleManager.createExternalIdentifier(ClassificationScheme identificationScheme, java.lang.String name, java.lang.String value)
          Creates an ExternalIdentifier instance using the specified parameters, where the name is a String.
 ExternalIdentifier LifeCycleManager.createExternalIdentifier(ClassificationScheme identificationScheme, InternationalString name, java.lang.String value)
          Creates an ExternalIdentifier instance using the specified parameters, where the name is an InternationalString.
 ExternalLink LifeCycleManager.createExternalLink(java.lang.String externalURI, java.lang.String description)
          Creates an ExternalLink instance using the specified parameters, where the description is a String.
 ExternalLink LifeCycleManager.createExternalLink(java.lang.String externalURI, InternationalString description)
          Creates an ExternalLink instance using the specified parameters, where the description is an InternationalString.
 ExtrinsicObject LifeCycleManager.createExtrinsicObject(javax.activation.DataHandler repositoryItem)
          Creates an ExtrinsicObject instance using the specified parameters.
 InternationalString LifeCycleManager.createInternationalString()
          Creates an empty InternationalString instance.
 InternationalString LifeCycleManager.createInternationalString(java.lang.String s)
          Creates an InternationalString instance using a String parameter and the default Locale.
 InternationalString LifeCycleManager.createInternationalString(java.util.Locale l, java.lang.String s)
          Creates an InternationalString instance using the specified Locale and String parameters.
 Key LifeCycleManager.createKey(java.lang.String id)
          Creates a Key instance from an ID.
 LocalizedString LifeCycleManager.createLocalizedString(java.util.Locale l, java.lang.String s)
          Creates a LocalizedString instance using the specified Locale and String parameters.
 LocalizedString LifeCycleManager.createLocalizedString(java.util.Locale l, java.lang.String s, java.lang.String charSetName)
          Creates a LocalizedString instance using the specified Locale, String, and character set parameters.
 Organization LifeCycleManager.createOrganization(java.lang.String name)
          Creates an Organization instance using the specified name, where the name is a String.
 Organization LifeCycleManager.createOrganization(InternationalString name)
          Creates an Organization instance using the specified name, where the name is an InternationalString.
 PersonName LifeCycleManager.createPersonName(java.lang.String firstName, java.lang.String middleName, java.lang.String lastName)
          Creates a PersonName instance using the specified first, middle, and last names.
 PersonName LifeCycleManager.createPersonName(java.lang.String fullName)
          Creates a PersonName instance using the specified full name.
 PostalAddress LifeCycleManager.createPostalAddress(java.lang.String streetNumber, java.lang.String street, java.lang.String city, java.lang.String stateOrProvince, java.lang.String country, java.lang.String postalCode, java.lang.String type)
          Creates a PostalAddress instance using the specified parameters.
 RegistryPackage LifeCycleManager.createRegistryPackage(java.lang.String name)
          Creates a RegistryPackage instance using the specified name, where the name is a String.
 RegistryPackage LifeCycleManager.createRegistryPackage(InternationalString name)
          Creates a RegistryPackage instance using the specified name, where the name is an InternationalString.
 Service LifeCycleManager.createService(java.lang.String name)
          Creates a Service instance using the specified name, where the name is a String.
 Service LifeCycleManager.createService(InternationalString name)
          Creates a Service instance using the specified name, where the name is an InternationalString.
 ServiceBinding LifeCycleManager.createServiceBinding()
          Creates an empty ServiceBinding instance.
 Slot LifeCycleManager.createSlot(java.lang.String name, java.lang.String value, java.lang.String slotType)
          Creates a Slot instance using the specified parameters, where the value is a String.
 Slot LifeCycleManager.createSlot(java.lang.String name, java.util.Collection values, java.lang.String slotType)
          Creates a Slot instance using the specified parameters, where the value is a Collection of Strings.
 SpecificationLink LifeCycleManager.createSpecificationLink()
          Creates an empty SpecificationLink instance.
 TelephoneNumber LifeCycleManager.createTelephoneNumber()
          Creates an empty TelephoneNumber instance.
 User LifeCycleManager.createUser()
          Creates an empty User instance.
 BulkResponse LifeCycleManager.saveObjects(java.util.Collection objects)
          Saves one or more Objects to the registry.
 BulkResponse LifeCycleManager.deprecateObjects(java.util.Collection keys)
          Deprecates one or more previously submitted objects.
 BulkResponse LifeCycleManager.unDeprecateObjects(java.util.Collection keys)
          Undeprecates one or more previously deprecated objects.
 BulkResponse LifeCycleManager.deleteObjects(java.util.Collection keys)
          Deletes one or more previously submitted objects from the registry using the object keys.
 BulkResponse LifeCycleManager.deleteObjects(java.util.Collection keys, java.lang.String objectType)
          Deletes one or more previously submitted objects from the registry using the object keys and a specified objectType attribute.
 RegistryService LifeCycleManager.getRegistryService()
          Returns the parent RegistryService that created this object.
 java.util.Collection BulkResponse.getCollection()
          Get the Collection of objects returned as a response of a bulk operation.
 java.util.Collection BulkResponse.getExceptions()
          Get the Collection of RegistryException instances in case of partial commit.
 boolean BulkResponse.isPartialResponse()
          Determines whether the response is a partial response due to large result set.
 BulkResponse BusinessLifeCycleManager.saveOrganizations(java.util.Collection organizations)
          Saves the specified Organizations.
 BulkResponse BusinessLifeCycleManager.saveServices(java.util.Collection services)
          Saves the specified Services.
 BulkResponse BusinessLifeCycleManager.saveServiceBindings(java.util.Collection bindings)
          Saves the specified ServiceBindings.
 BulkResponse BusinessLifeCycleManager.saveConcepts(java.util.Collection concepts)
          Saves the specified Concepts.
 BulkResponse BusinessLifeCycleManager.saveClassificationSchemes(java.util.Collection schemes)
          Saves the specified ClassificationScheme instances.
 BulkResponse BusinessLifeCycleManager.saveAssociations(java.util.Collection associations, boolean replace)
          Saves the specified Association instances.
 BulkResponse BusinessLifeCycleManager.deleteOrganizations(java.util.Collection organizationKeys)
          Deletes the organizations corresponding to the specified Keys.
 BulkResponse BusinessLifeCycleManager.deleteServices(java.util.Collection serviceKeys)
          Deletes the services corresponding to the specified Keys.
 BulkResponse BusinessLifeCycleManager.deleteServiceBindings(java.util.Collection bindingKeys)
          Deletes the ServiceBindings corresponding to the specified Keys.
 BulkResponse BusinessLifeCycleManager.deleteConcepts(java.util.Collection conceptKeys)
          Deletes the Concepts corresponding to the specified Keys.
 BulkResponse BusinessLifeCycleManager.deleteClassificationSchemes(java.util.Collection schemeKeys)
          Deletes the ClassificationSchemes corresponding to the specified Keys.
 BulkResponse BusinessLifeCycleManager.deleteAssociations(java.util.Collection associationKeys)
          Deletes the Associations corresponding to the specified Keys.
 void BusinessLifeCycleManager.confirmAssociation(Association assoc)
          Confirms this Association by the User associated with the caller.
 void BusinessLifeCycleManager.unConfirmAssociation(Association assoc)
          Undoes a previous confirmation of this Association by the User associated with the caller.
 CapabilityProfile RegistryService.getCapabilityProfile()
          Returns the CapabilityProfile for the JAXR provider
 BusinessLifeCycleManager RegistryService.getBusinessLifeCycleManager()
          Returns the BusinessLifeCycleManager object implemented by the JAXR provider
 BusinessQueryManager RegistryService.getBusinessQueryManager()
          Returns the BusinessQueryManager object implemented by the JAXR provider
 DeclarativeQueryManager RegistryService.getDeclarativeQueryManager()
          Returns the DeclarativeQueryManager object implemented by the JAXR provider.
 BulkResponse RegistryService.getBulkResponse(java.lang.String requestId)
          Returns the BulkResponse associated with specified requestId.
 ClassificationScheme RegistryService.getDefaultPostalScheme()
          Get the default user-defined postal scheme for codifying the attributes of PostalAddress
 java.lang.String RegistryService.makeRegistrySpecificRequest(java.lang.String request)
          This method takes a String that is an XML request in a registry specific format.
 int Query.getType()
          Gets the type of Query (for example, QUERY_TYPE_SQL).
 BulkResponse BusinessQueryManager.findAssociations(java.util.Collection findQualifiers, java.lang.String sourceObjectId, java.lang.String targetObjectId, java.util.Collection associationTypes)
          Finds all Association objects that match all of the criteria specified by the parameters of this call.
 BulkResponse BusinessQueryManager.findCallerAssociations(java.util.Collection findQualifiers, java.lang.Boolean confirmedByCaller, java.lang.Boolean confirmedByOtherParty, java.util.Collection associationTypes)
          Finds all Association objects owned by the caller that match all of the criteria specified by the parameters of this call.
 BulkResponse BusinessQueryManager.findOrganizations(java.util.Collection findQualifiers, java.util.Collection namePatterns, java.util.Collection classifications, java.util.Collection specifications, java.util.Collection externalIdentifiers, java.util.Collection externalLinks)
          Finds all Organization objects that match all of the criteria specified by the parameters of this call.
 BulkResponse BusinessQueryManager.findServices(Key orgKey, java.util.Collection findQualifiers, java.util.Collection namePatterns, java.util.Collection classifications, java.util.Collection specifications)
          Finds all Service objects that match all of the criteria specified by the parameters of this call.
 BulkResponse BusinessQueryManager.findServiceBindings(Key serviceKey, java.util.Collection findQualifiers, java.util.Collection classifications, java.util.Collection specifications)
          Finds all ServiceBinding objects that match all of the criteria specified by the parameters of this call.
 BulkResponse BusinessQueryManager.findClassificationSchemes(java.util.Collection findQualifiers, java.util.Collection namePatterns, java.util.Collection classifications, java.util.Collection externalLinks)
          Finds all ClassificationScheme objects that match all of the criteria specified by the parameters of this call.
 ClassificationScheme BusinessQueryManager.findClassificationSchemeByName(java.util.Collection findQualifiers, java.lang.String namePattern)
          Finds a ClassificationScheme by name based on the specified find qualifiers and name pattern.
 BulkResponse BusinessQueryManager.findConcepts(java.util.Collection findQualifiers, java.util.Collection namePatterns, java.util.Collection classifications, java.util.Collection externalIdentifiers, java.util.Collection externalLinks)
          Finds all Concept objects that match all of the criteria specified by the parameters of this call.
 Concept BusinessQueryManager.findConceptByPath(java.lang.String path)
          Finds a Concept based on the path specified.
 BulkResponse BusinessQueryManager.findRegistryPackages(java.util.Collection findQualifiers, java.util.Collection namePatterns, java.util.Collection classifications, java.util.Collection externalLinks)
          Finds all RegistryPackage objects that match all of the criteria specified by the parameters of this call.
 RegistryService Connection.getRegistryService()
          Gets the RegistryService interface associated with the Connection.
 void Connection.close()
          Closes a Connection when it is no longer needed.
 boolean Connection.isClosed()
          Indicated whether this Connection has been closed or not.
 boolean Connection.isSynchronous()
          Indicates whether a client uses synchronous communication with JAXR provider or not.
 void Connection.setSynchronous(boolean sync)
          Sets whether the client uses synchronous communication or not.
 void Connection.setCredentials(java.util.Set credentials)
          Sets the Credentials associated with this client.
 java.util.Set Connection.getCredentials()
          Gets the credentials associated with this client.
 Query DeclarativeQueryManager.createQuery(int queryType, java.lang.String queryString)
          Creates a Query object given a queryType (for example, QUERY_TYPE_SQL) and a String that represents a query in the syntax appropriate for queryType.
 BulkResponse DeclarativeQueryManager.executeQuery(Query query)
          Executes a query as specified by query parameter.
 java.lang.String CapabilityProfile.getVersion()
          Gets the JAXR specification version supported by the JAXR provider.
 int CapabilityProfile.getCapabilityLevel()
          Gets the capability level supported by the JAXR provider.
 RegistryObject QueryManager.getRegistryObject(java.lang.String id, java.lang.String objectType)
          Gets the RegistryObject specified by the Id and type of object.
 RegistryObject QueryManager.getRegistryObject(java.lang.String id)
          Gets the RegistryObject specified by the Id.
 BulkResponse QueryManager.getRegistryObjects(java.util.Collection objectKeys)
          Gets the specified RegistryObjects.
 BulkResponse QueryManager.getRegistryObjects(java.util.Collection objectKeys, java.lang.String objectTypes)
          Gets the specified RegistryObjects.
 BulkResponse QueryManager.getRegistryObjects()
          Gets the RegistryObjects owned by the caller.
 BulkResponse QueryManager.getRegistryObjects(java.lang.String objectType)
          Gets the RegistryObjects owned by the caller, that are of the specified type.
 RegistryService QueryManager.getRegistryService()
          Returns the parent RegistryService that created this object.
 

Uses of JAXRException in javax.xml.registry.infomodel
 

Methods in javax.xml.registry.infomodel that throw JAXRException
 java.lang.String EmailAddress.getAddress()
          Returns the email address for this object.
 void EmailAddress.setAddress(java.lang.String address)
          Sets the email address for this object.
 java.lang.String EmailAddress.getType()
          The type for this object.
 void EmailAddress.setType(java.lang.String type)
          Sets the type for this object.
 PostalAddress Organization.getPostalAddress()
          Gets the Address for this Organization.
 void Organization.setPostalAddress(PostalAddress address)
          Sets the address
 User Organization.getPrimaryContact()
          Gets the primary Contact for this Organization.
 void Organization.setPrimaryContact(User primaryContact)
          Sets the primary contact for this Organization.
 void Organization.addUser(User user)
          Add a User
 void Organization.addUsers(java.util.Collection users)
          Add a Collection of Users
 void Organization.removeUser(User user)
          Remove a User
 void Organization.removeUsers(java.util.Collection users)
          Remove a Collection of Users
 java.util.Collection Organization.getUsers()
          Gets the Collection of Users affiliated with this Organization.
 java.util.Collection Organization.getTelephoneNumbers(java.lang.String phoneType)
          Gets the telephone numbers for this User that match the specified telephone number type.
 void Organization.setTelephoneNumbers(java.util.Collection phoneNumbers)
          Set the various telephone numbers for this user
 void Organization.addService(Service service)
          Add a child Service
 void Organization.addServices(java.util.Collection services)
          Add a Collection of Service children
 void Organization.removeService(Service service)
          Remove a Service from this object
 void Organization.removeServices(java.util.Collection services)
          Remove a Collection of children Services from this object
 java.util.Collection Organization.getServices()
          Get all children Services
 void Organization.addChildOrganization(Organization organization)
          Add a child Organization
 void Organization.addChildOrganizations(java.util.Collection organizations)
          Add a Collection of Organization children
 void Organization.removeChildOrganization(Organization organization)
          Remove a child Organization
 void Organization.removeChildOrganizations(java.util.Collection organizations)
          Remove a Collection of children Organizations
 int Organization.getChildOrganizationCount()
          Get number of children
 java.util.Collection Organization.getChildOrganizations()
          Get all immediate children Organizations
 java.util.Collection Organization.getDescendantOrganizations()
          Get all descendant Organizations
 Organization Organization.getParentOrganization()
          Get the parent (container) organization
 Organization Organization.getRootOrganization()
          Get the root organization
 java.lang.String TelephoneNumber.getCountryCode()
          Gets the country code.
 java.lang.String TelephoneNumber.getAreaCode()
          Gets the area code.
 java.lang.String TelephoneNumber.getNumber()
          Gets the telephone number suffix, not including the country or area code.
 java.lang.String TelephoneNumber.getExtension()
          Gets the internal extension.
 java.lang.String TelephoneNumber.getUrl()
          Gets the URL that can dial this number electronically.
 java.lang.String TelephoneNumber.getType()
          The type of telephone number (for example, "fax").
 void TelephoneNumber.setCountryCode(java.lang.String countryCode)
          Sets country code.
 void TelephoneNumber.setAreaCode(java.lang.String areaCode)
          Sets the area code.
 void TelephoneNumber.setNumber(java.lang.String number)
          Sets the telephone number suffix, not including the country or area code.
 void TelephoneNumber.setExtension(java.lang.String extension)
          Sets the internal extension.
 void TelephoneNumber.setUrl(java.lang.String url)
          Sets the URL that can dial this number electronically.
 void TelephoneNumber.setType(java.lang.String type)
          Sets the type of telephone number (for example, "fax").
 java.lang.String LocalizedString.getCharsetName()
          Gets the canonical name for the charset for this object.
 java.util.Locale LocalizedString.getLocale()
          Get the Locale for this object.
 java.lang.String LocalizedString.getValue()
          Get the String value for this object.
 void LocalizedString.setCharsetName(java.lang.String charsetName)
          Set the canonical name for the charset for this object.
 void LocalizedString.setLocale(java.util.Locale locale)
          Set the Locale for this object.
 void LocalizedString.setValue(java.lang.String value)
          Set the String value for the specified object.
 Concept Classification.getConcept()
          Gets the Concept that is classifying the object.
 void Classification.setConcept(Concept concept)
          Sets the concept for this internal classification.
 ClassificationScheme Classification.getClassificationScheme()
          Gets the ClassificationScheme that is used in classifying the object.
 void Classification.setClassificationScheme(ClassificationScheme classificationScheme)
          Sets the ClassificationScheme for this external classification.
 java.lang.String Classification.getValue()
          Gets the taxonomy value for this Classification.
 void Classification.setValue(java.lang.String value)
          Sets the taxonomy value for this external Classification.
 RegistryObject Classification.getClassifiedObject()
          Gets the Object that is being classified.
 void Classification.setClassifiedObject(RegistryObject classifiedObject)
          Sets the object that is being classified.
 boolean Classification.isExternal()
          Returns true if this is an external classification.
 void URIValidator.setValidateURI(boolean validate)
          Sets whether to do URI validation for this object.
 boolean URIValidator.getValidateURI()
          Gets whether to do URI validation for this object.
 java.lang.String ExtrinsicObject.getMimeType()
          Gets the mime type associated with this object.
 void ExtrinsicObject.setMimeType(java.lang.String mimeType)
          Sets the mime type associated with this object.
 boolean ExtrinsicObject.isOpaque()
          Determines whether the ExtrinsicObject is opaque (not readable) by the registry operator.
 void ExtrinsicObject.setOpaque(boolean isOpaque)
          Sets whether the ExtrinsicObject is opaque (not readable) by the registry.
 javax.activation.DataHandler ExtrinsicObject.getRepositoryItem()
          Gets the repository item for this object.
 void ExtrinsicObject.setRepositoryItem(javax.activation.DataHandler repositoryItem)
          Sets the repository item for this object.
 void ExtensibleObject.addSlot(Slot slot)
          Adds a Slot to this object.
 void ExtensibleObject.addSlots(java.util.Collection slots)
          Adds more Slots to this object.
 void ExtensibleObject.removeSlot(java.lang.String slotName)
          Removes a Slot from this object.
 void ExtensibleObject.removeSlots(java.util.Collection slotNames)
          Removes specified Slots from this object.
 Slot ExtensibleObject.getSlot(java.lang.String slotName)
          Get the slot specified by slotName
 java.util.Collection ExtensibleObject.getSlots()
          Returns the Slots associated with this object.
 java.lang.String Slot.getName()
          Gets the name for this Slot.
 void Slot.setName(java.lang.String name)
          Sets the name for this Slot.
 java.lang.String Slot.getSlotType()
          Gets the slotType for this Slot.
 void Slot.setSlotType(java.lang.String slotType)
          Sets the slotType for this Slot.
 java.util.Collection Slot.getValues()
          Gets the values for this Slot.
 void Slot.setValues(java.util.Collection values)
          Sets the values for this Slot.
 java.lang.String Concept.getValue()
          Gets the value (usually a code in a taxonomy) associated with this Concept.
 void Concept.setValue(java.lang.String value)
          Sets the value (usually a taxonomy value) associated with this Concept.
 void Concept.addChildConcept(Concept concept)
          Add a child Concept
 void Concept.addChildConcepts(java.util.Collection concepts)
          Add a Collection of Concept children
 void Concept.removeChildConcept(Concept concept)
          Remove a child Concept
 void Concept.removeChildConcepts(java.util.Collection concepts)
          Remove a Collection of children Concepts
 int Concept.getChildConceptCount()
          Get number of children
 java.util.Collection Concept.getChildrenConcepts()
          Get all immediate children Concepts
 java.util.Collection Concept.getDescendantConcepts()
          Get all descendant Concepts
 Concept Concept.getParentConcept()
          Get the parent Concept or null if parent is a ClassificationScheme.
 ClassificationScheme Concept.getClassificationScheme()
          Get the ClassificationScheme that this Concept is a descendent of
 java.lang.String Concept.getPath()
          Gets the canonical path representation for this Concept.
 RegistryObject Concept.getParent()
          Gets the parent Concept or ClassificationScheme for this object.
 RegistryObject ExternalIdentifier.getRegistryObject()
          Gets the parent RegistryObject for this ExternalIdentifier.
 java.lang.String ExternalIdentifier.getValue()
          Gets the value of an ExternalIdentifier
 void ExternalIdentifier.setValue(java.lang.String value)
          Sets the value of an ExternalIdentifier
 ClassificationScheme ExternalIdentifier.getIdentificationScheme()
          Gets the ClassificationScheme that is used as the identification scheme for identifying this object.
 void ExternalIdentifier.setIdentificationScheme(ClassificationScheme identificationScheme)
          Sets the ClassificationScheme that is used as the identification scheme for identifying this object.
 RegistryObject SpecificationLink.getSpecificationObject()
          Gets the specification object for this object.
 void SpecificationLink.setSpecificationObject(RegistryObject obj)
          Sets the specification object for this object.
 InternationalString SpecificationLink.getUsageDescription()
          Gets the description of usage parameters.
 void SpecificationLink.setUsageDescription(InternationalString usageDescription)
          Sets the description of usage parameters.
 java.util.Collection SpecificationLink.getUsageParameters()
          Gets any usage parameters.
 void SpecificationLink.setUsageParameters(java.util.Collection usageParameters)
          Sets any usage parameters.
 ServiceBinding SpecificationLink.getServiceBinding()
          Gets the parent ServiceBinding for this SpecificationLink.
 User AuditableEvent.getUser()
          Gets the User associated with this object.
 java.sql.Timestamp AuditableEvent.getTimestamp()
          Gets the Timestamp for when this event occurred.
 int AuditableEvent.getEventType()
          The type of this event.
 RegistryObject AuditableEvent.getRegistryObject()
          Gets the RegistryObject associated with this AudiatbleEvent
 int Versionable.getMajorVersion()
          Gets the major revision number for this version of the Versionable object.
 void Versionable.setMajorVersion(int majorVersion)
          Sets the major revision number for this version of the Versionable object.
 int Versionable.getMinorVersion()
          Gets the minor revision number for this version of the Versionable object.
 void Versionable.setMinorVersion(int minorVersion)
          Sets the minor revision number for this version of the Versionable object.
 java.lang.String Versionable.getUserVersion()
          Gets the user-specified revision number for this version of the Versionable object.
 void Versionable.setUserVersion(java.lang.String userVersion)
          Sets the user specified revision number for this version of the Versionable object.
 int RegistryEntry.getStatus()
          Gets the life cycle status of the RegistryEntry within the registry.
 int RegistryEntry.getStability()
          Gets the stability indicator for the RegistryEntry within the Registry.
 void RegistryEntry.setStability(int stability)
          Sets the stability indicator for the RegistryEntry
 java.util.Date RegistryEntry.getExpiration()
          Gets expirationDate attribute of the RegistryEntry within the Registry.
 void RegistryEntry.setExpiration(java.util.Date expiration)
          Sets the expirationDate
 Organization User.getOrganization()
          Gets the Organization that this User is affiliated with.
 PersonName User.getPersonName()
          Returns the name of this User.
 void User.setPersonName(PersonName personName)
          Sets the name of this User.
 java.util.Collection User.getPostalAddresses()
          Gets the postal address for this User.
 void User.setPostalAddresses(java.util.Collection addresses)
          Sets the addresses for this User.
 java.net.URL User.getUrl()
          Gets the URL to the web page for this User.
 void User.setUrl(java.net.URL url)
          Sets the URL to the web page for this User.
 java.util.Collection User.getTelephoneNumbers(java.lang.String phoneType)
          Gets the telephone numbers for this User that match the specified telephone number type.
 void User.setTelephoneNumbers(java.util.Collection phoneNumbers)
          Sets the various telephone numbers for this user.
 java.util.Collection User.getEmailAddresses()
          Gets the email addresses for this User.
 void User.setEmailAddresses(java.util.Collection emailAddresses)
          Sets the Collection of EmailAddress instances for this User.
 java.lang.String User.getType()
          Gets the type for this User.
 void User.setType(java.lang.String type)
          Sets the type for this User.
 RegistryObject Association.getSourceObject()
          Gets the Object that is the source of this Association.
 void Association.setSourceObject(RegistryObject srcObject)
          Sets the Object that is the source of this Association.
 RegistryObject Association.getTargetObject()
          Gets the Object that is the target of this Association.
 void Association.setTargetObject(RegistryObject targetObject)
          Sets the Object that is the target of this Association.
 Concept Association.getAssociationType()
          Gets the association type for this Association.
 void Association.setAssociationType(Concept associationType)
          Sets the association type for this Association.
 boolean Association.isExtramural()
          Determines whether an Association is extramural or not.
 boolean Association.isConfirmedBySourceOwner()
          Determines whether an Association has been confirmed by the owner of the source object.
 boolean Association.isConfirmedByTargetOwner()
          Determines whether an Association has been confirmed by the owner of the target object.
 boolean Association.isConfirmed()
          Determines whether an Association has been confirmed completely.
 java.lang.String ServiceBinding.getAccessURI()
          Gets the URI that gives access to the service via this binding.
 void ServiceBinding.setAccessURI(java.lang.String uri)
          Sets the URI that gives access to the service via this binding.
 ServiceBinding ServiceBinding.getTargetBinding()
          Gets the next ServiceBinding in case there is a redirection from one service provider to another service provider.
 void ServiceBinding.setTargetBinding(ServiceBinding binding)
          Sets the next ServiceBinding in case there is a redirection.
 Service ServiceBinding.getService()
          Gets the parent service for which this is a binding
 void ServiceBinding.addSpecificationLink(SpecificationLink specificationLink)
          Add a child SpecificationLink
 void ServiceBinding.addSpecificationLinks(java.util.Collection specificationLinks)
          Add a Collection of SpecificationLink children
 void ServiceBinding.removeSpecificationLink(SpecificationLink specificationLink)
          Remove a child SpecificationLink
 void ServiceBinding.removeSpecificationLinks(java.util.Collection specificationLinks)
          Remove a Collection of children SpecificationLinks
 java.util.Collection ServiceBinding.getSpecificationLinks()
          Get all children SpecificationLinks
 java.lang.String PostalAddress.getStreet()
          Returns the street name.
 void PostalAddress.setStreet(java.lang.String street)
          Sets the street name.
 java.lang.String PostalAddress.getStreetNumber()
          Returns the street number.
 void PostalAddress.setStreetNumber(java.lang.String streetNumber)
          Sets the street number.
 java.lang.String PostalAddress.getCity()
          Returns the city.
 void PostalAddress.setCity(java.lang.String city)
          Sets the city.
 java.lang.String PostalAddress.getStateOrProvince()
          Returns the state or province.
 void PostalAddress.setStateOrProvince(java.lang.String stateOrProvince)
          Sets the state or province.
 java.lang.String PostalAddress.getPostalCode()
          Returns the postal or zip code.
 void PostalAddress.setPostalCode(java.lang.String postalCode)
          Sets the postal or zip code.
 java.lang.String PostalAddress.getCountry()
          Returns the country.
 void PostalAddress.setCountry(java.lang.String country)
          Sets the country.
 java.lang.String PostalAddress.getType()
          Returns the type of address (for example, "headquarters") as a String.
 void PostalAddress.setType(java.lang.String type)
          Sets the type of address (for example, "headquarters") as a String.
 void PostalAddress.setPostalScheme(ClassificationScheme scheme)
          Sets a user-defined postal scheme for codifying the attributes of PostalAddress.
 ClassificationScheme PostalAddress.getPostalScheme()
          Returns a user-defined postal scheme for codifying the attributes of PostalAddress.
 Organization Service.getProvidingOrganization()
          Gets the Organization that provides this service.
 void Service.setProvidingOrganization(Organization providingOrganization)
          Sets the Organization that provides this service.
 void Service.addServiceBinding(ServiceBinding serviceBinding)
          Add a child ServiceBinding
 void Service.addServiceBindings(java.util.Collection serviceBindings)
          Add a Collection of ServiceBinding children
 void Service.removeServiceBinding(ServiceBinding serviceBinding)
          Remove a child ServiceBinding
 void Service.removeServiceBindings(java.util.Collection serviceBindings)
          Remove a Collection of children ServiceBindings
 java.util.Collection Service.getServiceBindings()
          Get all children ServiceBindings
 java.lang.String PersonName.getLastName()
          The last name (surname) for this Person.
 void PersonName.setLastName(java.lang.String lastName)
          Sets the last name (surname) for this Person.
 java.lang.String PersonName.getFirstName()
          The first name for this Person.
 void PersonName.setFirstName(java.lang.String firstName)
          Sets the first name for this Person.
 java.lang.String PersonName.getMiddleName()
          The middle name for this Person.
 void PersonName.setMiddleName(java.lang.String middleName)
          Sets the middle name for this Person.
 java.lang.String PersonName.getFullName()
          The fully formatted name for this person.
 void PersonName.setFullName(java.lang.String fullName)
          Sets the fully formatted name for this person
 java.lang.String InternationalString.getValue()
          Get the String value for the Locale returned by Locale.getDefault().
 java.lang.String InternationalString.getValue(java.util.Locale locale)
          Get the String value for the specified Locale.
 void InternationalString.setValue(java.lang.String value)
          Set the String value for the Locale returned by Locale.getDefault().
 void InternationalString.setValue(java.util.Locale locale, java.lang.String value)
          Set the String value for the specified Locale.
 void InternationalString.addLocalizedString(LocalizedString localizedString)
          Adds a LocalizedString to this object.
 void InternationalString.addLocalizedStrings(java.util.Collection localizedStrings)
          Adds many LocalizedStrings to this object.
 void InternationalString.removeLocalizedString(LocalizedString localizedString)
          Removes a LocalizedString from this object.
 void InternationalString.removeLocalizedStrings(java.util.Collection localizedStrings)
          Removes specified LocalizedStrings to this object.
 LocalizedString InternationalString.getLocalizedString(java.util.Locale locale, java.lang.String charsetName)
          Get the LocalizedString for the specified Locale and charsetName
 java.util.Collection InternationalString.getLocalizedStrings()
          Returns the LocalizedStrings associated with this object.
 java.lang.String Key.getId()
          Returns the unique Id of this key.
 void Key.setId(java.lang.String id)
          Sets the unique id associated with this key.
 java.util.Collection ExternalLink.getLinkedObjects()
          Gets the collection of RegistryObjects that are annotated by this ExternalLink.
 java.lang.String ExternalLink.getExternalURI()
          Gets URI to the an external resource Default is a NULL String.
 void ExternalLink.setExternalURI(java.lang.String uri)
          Sets URI for an external resource
 void ClassificationScheme.addChildConcept(Concept concept)
          Add a child Concept
 void ClassificationScheme.addChildConcepts(java.util.Collection concepts)
          Add a Collection of Concept children
 void ClassificationScheme.removeChildConcept(Concept concept)
          Remove a child Concept
 void ClassificationScheme.removeChildConcepts(java.util.Collection concepts)
          Remove a Collection of children Concepts
 int ClassificationScheme.getChildConceptCount()
          Get number of children
 java.util.Collection ClassificationScheme.getChildrenConcepts()
          Get all immediate children Concepts
 java.util.Collection ClassificationScheme.getDescendantConcepts()
          Get all descendant Concepts
 boolean ClassificationScheme.isExternal()
          Determines whether this ClassificationScheme is an external ClassificationScheme or and internal ClassificationScheme.
 int ClassificationScheme.getValueType()
          Get the value type for this object.
 void ClassificationScheme.setValueType(int valueType)
          Set the value type for this object.
 Key RegistryObject.getKey()
          Gets the key representing the universally unique ID (UUID) for this object.
 InternationalString RegistryObject.getDescription()
          Gets the textual description for this object.
 void RegistryObject.setDescription(InternationalString description)
          Sets the context independent textual description for this object.
 InternationalString RegistryObject.getName()
          Gets user friendly name of this object.
 void RegistryObject.setName(InternationalString name)
          Sets user friendly name of object in repository.
 void RegistryObject.setKey(Key key)
          Sets the key representing the universally unique ID (UUID) for this object.
 java.lang.String RegistryObject.toXML()
          Returns a registry provider specific XML representation of this Object.
 void RegistryObject.addClassification(Classification classification)
          Adds specified Classification to this object.
 void RegistryObject.addClassifications(java.util.Collection classifications)
          Adds specified Classifications to this object.
 void RegistryObject.removeClassification(Classification classification)
          Removes specified Classification from this object.
 void RegistryObject.removeClassifications(java.util.Collection classifications)
          Removes specified Classifications from this object.
 void RegistryObject.setClassifications(java.util.Collection classifications)
          Replaces all previous Classifications with specified Classifications.
 java.util.Collection RegistryObject.getClassifications()
          Gets the Classification instances that classify this object.
 java.util.Collection RegistryObject.getAuditTrail()
          Returns the complete audit trail of all requests that effected a state change in this object as an ordered Collection of AuditableEvent objects.
 void RegistryObject.addAssociation(Association association)
          Adds specified Association to use this object as source.
 void RegistryObject.addAssociations(java.util.Collection associations)
          Adds specified Associations to use this object as source Silently replaces the sourceObject in Associations with reference to this object.
 void RegistryObject.removeAssociation(Association association)
          Removes specified Association from this object.
 void RegistryObject.removeAssociations(java.util.Collection associations)
          Removes specified Associations from this object.
 void RegistryObject.setAssociations(java.util.Collection associations)
          Replaces all previous Associations from this object with specified Associations.
 java.util.Collection RegistryObject.getAssociations()
          Gets all Associations where this object is source.
 java.util.Collection RegistryObject.getAssociatedObjects()
          Returns the collection of RegistryObject instances associated with this object.
 void RegistryObject.addExternalIdentifier(ExternalIdentifier externalIdentifier)
          Adds specified ExternalIdentifier as an external identifier to this object.
 void RegistryObject.addExternalIdentifiers(java.util.Collection externalIdentifiers)
          Adds specified ExternalIdentifiers as an external identifiers to this object.
 void RegistryObject.removeExternalIdentifier(ExternalIdentifier externalIdentifier)
          Removes specified ExternalIdentifier as an external identifier from this object.
 void RegistryObject.removeExternalIdentifiers(java.util.Collection externalIdentifiers)
          Removes specified ExternalIdentifiers as an external identifiers from this object.
 void RegistryObject.setExternalIdentifiers(java.util.Collection externalIdentifiers)
          Replaces all previous external identifiers with specified Collection of ExternalIdentifiers as an external identifiers.
 java.util.Collection RegistryObject.getExternalIdentifiers()
          Returns the ExternalIdentifiers associated with this object that are external identifiers for this object.
 void RegistryObject.addExternalLink(ExternalLink externalLink)
          Adds specified ExternalLink to this object.
 void RegistryObject.addExternalLinks(java.util.Collection externalLinks)
          Adds specified ExternalLinks to this object.
 void RegistryObject.removeExternalLink(ExternalLink externalLink)
          Removes specified ExternalLink from this object.
 void RegistryObject.removeExternalLinks(java.util.Collection externalLinks)
          Removes specified ExternalLinks from this object.
 void RegistryObject.setExternalLinks(java.util.Collection externalLinks)
          Replaces all previous ExternalLinks with specified ExternalLinks.
 java.util.Collection RegistryObject.getExternalLinks()
          Returns the ExternalLinks associated with this object.
 Concept RegistryObject.getObjectType()
          Gets the object type that best describes the RegistryObject.
 Organization RegistryObject.getSubmittingOrganization()
          Gets the Organization that submitted this RegistryObject.
 java.util.Collection RegistryObject.getRegistryPackages()
          Returns the Package associated with this object.
 LifeCycleManager RegistryObject.getLifeCycleManager()
          Returns the LifeCycleManager that created this object.
 void RegistryPackage.addRegistryObject(RegistryObject registryObject)
          Add a child RegistryObject as member
 void RegistryPackage.addRegistryObjects(java.util.Collection registryObjects)
          Add a Collection of RegistryObject children as members
 void RegistryPackage.removeRegistryObject(RegistryObject registryObject)
          Remove a child RegistryObject from membership
 void RegistryPackage.removeRegistryObjects(java.util.Collection registryObjects)
          Remove a Collection of children RegistryObjects from membership
 java.util.Set RegistryPackage.getRegistryObjects()
          Get the collection of member RegistryObjects of this RegistryPackage