public interface RegistryObject
The RegistryObject class is an abstract base class used by most classes in the model. It provides minimal metadata for registry objects. It also provides methods for accessing related objects that provide additional dynamic metadata for the registry object.
RegistryEntry| Method Summary | |
|---|---|
void |
addAssociation(Association association)
Adds specified Association to use this object as source. |
void |
addAssociations(Collection associations)
Adds specified Associations to use this object as source. |
void |
addClassification(Classification classification)
Adds specified Classification to this object. |
void |
addClassifications(Collection classifications)
Adds specified Classifications to this object. |
void |
addExternalIdentifier(ExternalIdentifier externalIdentifier)
Adds specified ExternalIdentifier as an external identifier to this object. |
void |
addExternalIdentifiers(Collection externalIdentifiers)
Adds specified ExternalIdentifiers as an external identifiers to this object. |
void |
addExternalLink(ExternalLink externalLink)
Adds specified ExternalLink to this object. |
void |
addExternalLinks(Collection externalLinks)
Adds specified ExternalLinks to this object. |
Collection |
getAssociatedObjects()
Returns the collection of RegistryObject instances associated with this object. |
Collection |
getAssociations()
Gets all Associations where this object is source. |
Collection |
getAuditTrail()
Returns the complete audit trail of all requests that effected a state change in this object as an ordered Collection of AuditableEvent objects. |
Collection |
getClassifications()
Gets the Classification instances that classify this object. |
InternationalString |
getDescription()
Gets the textual description for this object. |
Collection |
getExternalIdentifiers()
Returns the ExternalIdentifiers associated with this object that are external identifiers for this object. |
Collection |
getExternalLinks()
Returns the ExternalLinks associated with this object. |
Key |
getKey()
Gets the key representing the universally unique ID (UUID) for this object. |
LifeCycleManager |
getLifeCycleManager()
Returns the LifeCycleManager that created this object. |
InternationalString |
getName()
Gets the user-friendly name of this object. |
Concept |
getObjectType()
Gets the object type that best describes the RegistryObject. |
Collection |
getRegistryPackages()
Returns the Package associated with this object. |
Organization |
getSubmittingOrganization()
Gets the Organization that submitted this RegistryObject. |
void |
removeAssociation(Association association)
Removes specified Association from this object. |
void |
removeAssociations(Collection associations)
Removes specified Associations from this object. |
void |
removeClassification(Classification classification)
Removes specified Classification from this object. |
void |
removeClassifications(Collection classifications)
Removes specified Classifications from this object. |
void |
removeExternalIdentifier(ExternalIdentifier externalIdentifier)
Removes specified ExternalIdentifier as an external identifier from this object. |
void |
removeExternalIdentifiers(Collection externalIdentifiers)
Removes specified ExternalIdentifiers as an external identifiers from this object. |
void |
removeExternalLink(ExternalLink externalLink)
Removes specified ExternalLink from this object. |
void |
removeExternalLinks(Collection externalLinks)
Removes specified ExternalLinks from this object. |
void |
setAssociations(Collection associations)
Replaces all previous Associations from this object with specified Associations. |
void |
setClassifications(Collection classifications)
Replaces all previous Classifications with specified Classifications. |
void |
setDescription(InternationalString description)
Sets the context independent textual description for this object. |
void |
setExternalIdentifiers(Collection externalIdentifiers)
Replaces all previous external identifiers with specified Collection of ExternalIdentifiers as an external identifier. |
void |
setExternalLinks(Collection externalLinks)
Replaces all previous ExternalLinks with specified ExternalLinks. |
void |
setKey(Key key)
Sets the key representing the universally unique ID (UUID) for this object. |
void |
setName(InternationalString name)
Sets user-friendly name of object in repository. |
String |
toXML()
Returns a registry provider specific XML representation of this Object. |
| Methods inherited from interface javax.xml.registry.infomodel.ExtensibleObject |
|---|
addSlot, addSlots, getSlot, getSlots, removeSlot, removeSlots |
| Method Detail |
|---|
Key getKey() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorInternationalString getDescription() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorvoid setDescription(InternationalString description) throws JAXRException
description - the description for this object
JAXRException - If the JAXR provider encounters an internal errorInternationalString getName() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorvoid setName(InternationalString name) throws JAXRException
name - the name for this object
JAXRException - If the JAXR provider encounters an internal errorvoid setKey(Key key) throws JAXRException
key - the key for this object
JAXRException - If the JAXR provider encounters an internal errorString toXML() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorvoid addClassification(Classification classification) throws JAXRException
classification - the Classification being added
JAXRException - If the JAXR provider encounters an internal errorvoid addClassifications(Collection classifications) throws JAXRException
classifications - the Collection of Classifications being added
JAXRException - If the JAXR provider encounters an internal errorvoid removeClassification(Classification classification) throws JAXRException
classification - the Classification being removed
JAXRException - If the JAXR provider encounters an internal errorvoid removeClassifications(Collection classifications) throws JAXRException
classifications - the Collection of Classifications being removed
JAXRException - If the JAXR provider encounters an internal errorvoid setClassifications(Collection classifications) throws JAXRException
classifications - the Collection of Classifications being set
JAXRException - If the JAXR provider encounters an internal errorCollection getClassifications() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorClassificationCollection getAuditTrail() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorAuditableEventvoid addAssociation(Association association) throws JAXRException
association - the Association being added
JAXRException - If the JAXR provider encounters an internal errorvoid addAssociations(Collection associations) throws JAXRException
associations - the Collection of Associations being added
JAXRException - If the JAXR provider encounters an internal errorvoid removeAssociation(Association association) throws JAXRException
association - the Association being removed
JAXRException - If the JAXR provider encounters an internal errorvoid removeAssociations(Collection associations) throws JAXRException
associations - the Collection of Associations being removed
JAXRException - If the JAXR provider encounters an internal errorvoid setAssociations(Collection associations) throws JAXRException
associations - the Collection of Associations being set
JAXRException - If the JAXR provider encounters an internal errorCollection getAssociations() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorAssociationCollection getAssociatedObjects() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorRegistryObjectvoid addExternalIdentifier(ExternalIdentifier externalIdentifier) throws JAXRException
externalIdentifier - the ExternalIdentifier being added
JAXRException - If the JAXR provider encounters an internal errorvoid addExternalIdentifiers(Collection externalIdentifiers) throws JAXRException
externalIdentifiers - the Collection of ExternalIdentifiers being added
JAXRException - If the JAXR provider encounters an internal errorvoid removeExternalIdentifier(ExternalIdentifier externalIdentifier) throws JAXRException
externalIdentifier - the ExternalIdentifier being removed
JAXRException - If the JAXR provider encounters an internal errorvoid removeExternalIdentifiers(Collection externalIdentifiers) throws JAXRException
externalIdentifiers - the Collection of ExternalIdentifiers being removed
JAXRException - If the JAXR provider encounters an internal errorvoid setExternalIdentifiers(Collection externalIdentifiers) throws JAXRException
externalIdentifiers - the Collection of ExternalIdentifiers being set
JAXRException - If the JAXR provider encounters an internal errorCollection getExternalIdentifiers() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorExternalIdentifiervoid addExternalLink(ExternalLink externalLink) throws JAXRException
externalLinks - the ExternalLink being added
JAXRException - If the JAXR provider encounters an internal errorvoid addExternalLinks(Collection externalLinks) throws JAXRException
externalLinks - the Collection of ExternalLinks being added
JAXRException - If the JAXR provider encounters an internal errorvoid removeExternalLink(ExternalLink externalLink) throws JAXRException
externalLink - the ExternalLink being removed
JAXRException - If the JAXR provider encounters an internal errorvoid removeExternalLinks(Collection externalLinks) throws JAXRException
externalLinks - the Collection of ExternalLinks being removed
JAXRException - If the JAXR provider encounters an internal errorvoid setExternalLinks(Collection externalLinks) throws JAXRException
externalLink - the Collection of ExternalLinks being set
JAXRException - If the JAXR provider encounters an internal errorCollection getExternalLinks() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorExternalLinkConcept getObjectType() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorOrganization getSubmittingOrganization() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorCollection getRegistryPackages() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorRegistryPackageLifeCycleManager getLifeCycleManager() throws JAXRException
JAXRException - If the JAXR provider encounters an internal errorCes informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
8 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)