Uses of Class
gov.nasa.pds.registry.model.RegistryObject

Packages that use RegistryObject
gov.nasa.pds.registry.model   
gov.nasa.pds.registry.model.naming   
gov.nasa.pds.registry.service   
 

Uses of RegistryObject in gov.nasa.pds.registry.model
 

Subclasses of RegistryObject in gov.nasa.pds.registry.model
 class Association
          This class allows one to relate a source and target registry object along a named relationship.
 class AuditableEvent
          AuditableEvent instances provide a long-term record of events that effected a change in a RegistryObject.
 class Classification
          A Classification instance classifies a RegistryObject instance by referencing a node defined within a particular ClassificationScheme.
 class ClassificationNode
          ClassificationNode instances are used to define tree structures where each node in the tree is a ClassificationNode.
 class ClassificationScheme
          A ClassificationScheme instance describes a taxonomy.
 class Product
           
 class Service
          Service instances describe services, such as web services, web sites, FTP servers, etc.
 class ServiceBinding
          ServiceBinding instances are RegistryObjects that represent technical information on a specific way to access a Service instance.
 class SpecificationLink
          A SpecificationLink provides the linkage between a ServiceBinding and one of its technical specifications that describes how to use the service using the ServiceBinding.
 

Methods in gov.nasa.pds.registry.model that return types with arguments of type RegistryObject
 List<? extends RegistryObject> RegistryResponse.getResults()
           
 

Method parameters in gov.nasa.pds.registry.model with type arguments of type RegistryObject
 void RegistryResponse.setResults(List<? extends RegistryObject> results)
           
 

Constructors in gov.nasa.pds.registry.model with parameters of type RegistryObject
RegistryObject(RegistryObject object)
           
 

Constructor parameters in gov.nasa.pds.registry.model with type arguments of type RegistryObject
RegistryResponse(Integer start, Long numFound, List<? extends RegistryObject> results)
           
RegistryResponse(List<? extends RegistryObject> results)
           
 

Uses of RegistryObject in gov.nasa.pds.registry.model.naming
 

Methods in gov.nasa.pds.registry.model.naming that return types with arguments of type RegistryObject
 Comparator<RegistryObject> Versioner.getComparator()
           
 Comparator<RegistryObject> DefaultVersioner.getComparator()
          This comparator imposes orderings that are inconsistent with equals as it only compares the version attribute on Registry Objects.
 

Uses of RegistryObject in gov.nasa.pds.registry.service
 

Methods in gov.nasa.pds.registry.service that return RegistryObject
 RegistryObject RegistryService.getRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
          Retrieves a registry object of the requested type
 RegistryObject MetadataStoreJPA.getRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
           
 RegistryObject MetadataStore.getRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
          Returns the registry object with a given guid and of the given type
 RegistryObject MetadataStoreJPA.getRegistryObject(String lid, String versionId, Class<? extends RegistryObject> objectClass)
           
 RegistryObject MetadataStore.getRegistryObject(String lid, String versionId, Class<? extends RegistryObject> objectClass)
          Retrieves a registry object that is identified by its logical identifier and user supplied version.
 

Methods in gov.nasa.pds.registry.service that return types with arguments of type RegistryObject
 List<RegistryObject> MetadataStoreJPA.getRegistryObjects(Integer start, Integer rows, Class<? extends RegistryObject> objectClass)
           
 List<RegistryObject> MetadataStore.getRegistryObjects(Integer start, Integer rows, Class<? extends RegistryObject> objectClass)
          This method allows paging through registry objects of a given type.
 List<RegistryObject> MetadataStoreJPA.getRegistryObjectVersions(String lid, Class<? extends RegistryObject> objectClass)
           
 List<RegistryObject> MetadataStore.getRegistryObjectVersions(String lid, Class<? extends RegistryObject> objectClass)
          Returns all versions of a registry object that share a logical identifier
 

Methods in gov.nasa.pds.registry.service with parameters of type RegistryObject
 String RegistryService.publishRegistryObject(String user, RegistryObject registryObject)
          Publishes a registry object to the registry.
 void MetadataStoreJPA.saveRegistryObject(RegistryObject registryObject)
           
 void MetadataStore.saveRegistryObject(RegistryObject registryObject)
          Stores a registry object into the back end.
 void MetadataStoreJPA.updateRegistryObject(RegistryObject registryObject)
           
 void MetadataStore.updateRegistryObject(RegistryObject registryObject)
          Updates a registry object that shares the guid of the given object
 void RegistryService.updateRegistryObject(String user, RegistryObject registryObject)
          This method allows one to update all the metadata associated with a registry object.
 

Method parameters in gov.nasa.pds.registry.service with type arguments of type RegistryObject
 void RegistryService.changeRegistryObjectStatus(String user, String guid, ObjectAction action, Class<? extends RegistryObject> objectClass)
          Changes the status of registry object with the given guid and of the given type
 void MetadataStoreJPA.deleteRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
           
 void MetadataStore.deleteRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
          Removes a registry object from the back end store.
 void RegistryService.deleteRegistryObject(String user, String guid, Class<? extends RegistryObject> objectClass)
          Deletes a RegistryObject from the registry which share the logical identifier and version.
 void RegistryService.deleteRegistryObject(String user, String lid, String versionId, Class<? extends RegistryObject> objectClass)
          Deletes a RegistryObject from the registry which share the logical identifier and version.
 long MetadataStoreJPA.getNumRegistryObjects(Class<? extends RegistryObject> objectClass)
           
 long MetadataStore.getNumRegistryObjects(Class<? extends RegistryObject> objectClass)
          Gets the count of registry objects managed in the backed of a given type.
 RegistryObject RegistryService.getRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
          Retrieves a registry object of the requested type
 RegistryObject MetadataStoreJPA.getRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
           
 RegistryObject MetadataStore.getRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
          Returns the registry object with a given guid and of the given type
 RegistryObject MetadataStoreJPA.getRegistryObject(String lid, String versionId, Class<? extends RegistryObject> objectClass)
           
 RegistryObject MetadataStore.getRegistryObject(String lid, String versionId, Class<? extends RegistryObject> objectClass)
          Retrieves a registry object that is identified by its logical identifier and user supplied version.
 List<RegistryObject> MetadataStoreJPA.getRegistryObjects(Integer start, Integer rows, Class<? extends RegistryObject> objectClass)
           
 List<RegistryObject> MetadataStore.getRegistryObjects(Integer start, Integer rows, Class<? extends RegistryObject> objectClass)
          This method allows paging through registry objects of a given type.
 List<RegistryObject> MetadataStoreJPA.getRegistryObjectVersions(String lid, Class<? extends RegistryObject> objectClass)
           
 List<RegistryObject> MetadataStore.getRegistryObjectVersions(String lid, Class<? extends RegistryObject> objectClass)
          Returns all versions of a registry object that share a logical identifier
 boolean MetadataStoreJPA.hasRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
           
 boolean MetadataStore.hasRegistryObject(String guid, Class<? extends RegistryObject> objectClass)
          Test to see if a registry object exists with a guid and type requested.
 boolean MetadataStoreJPA.hasRegistryObject(String lid, String versionId, Class<? extends RegistryObject> objectClass)
           
 boolean MetadataStore.hasRegistryObject(String lid, String versionId, Class<? extends RegistryObject> objectClass)
          Test to see if a registry object exists with a logical identifier, version, and type requested.
 boolean MetadataStoreJPA.hasRegistryObjectVersions(String lid, Class<? extends RegistryObject> objectClass)
           
 boolean MetadataStore.hasRegistryObjectVersions(String lid, Class<? extends RegistryObject> objectClass)
          Test to see if there are any versions of the registry object with the logical id and type requested
 



Copyright © 2005-2010 Planetary Data System. All Rights Reserved.