Uses of Interface
org.xiruss.snapcm.api.Resource

Packages that use Resource
org.xiruss.repository.api Defines the repository-level interfaces common to clients and servers. 
org.xiruss.repository.client.importers Provides classes that support importing data objects into the repository. 
org.xiruss.repository.client.importers.xml Provides classes for supporting the import of generic XML documents as well as XSD schemas and XSLT style sheets. 
org.xiruss.repository.common Holds implementation classes usable by both clients and servers. 
org.xiruss.repository.multiuserschema_aware API for schema-aware repositories. 
org.xiruss.repository.schema_aware Server-side base implementation of a multi-user, schema-aware repository. 
org.xiruss.repository.schema_aware.api API for schema-aware repositories. 
org.xiruss.repository.server Implementation classes for the core server-side objects that make up a SnapCM repository. 
org.xiruss.snapcm Defines the SnapCM API. 
org.xiruss.snapcm.api Defines the SnapCM API as a set of interfaces and exception types. 
org.xiruss.snapcm.api.helpers Defines types that are not part of the core SnapCM data model but that make working with SnapCM objects more convenient. 
org.xiruss.util Utility classes that are used by all parts of the code. 
org.xiruss.xirussrepository.api Defines the API for the XirussRepository. 
org.xiruss.xirussrepository.client This package provides client-side proxies that implement all the relevant Repository and XirussRepository APIs and manage all communication with the HTTP Xiruss Repository API (provided by the JettyXirussHttpApiRunner class. 
org.xiruss.xirussrepository.server Implementation of the XirussRepository API. 
org.xiruss.xirussrepository.server.jetty.apiserver Implements the Xiruss HTTP API handler and repository-object-type specific Jetty Resources that manage the translation of specific Xiruss Repository objects into HTTP actions that result in XML API response messages (i.e., the data contents of a version or a list of resources or whatever. 
 

Uses of Resource in org.xiruss.repository.api
 

Fields in org.xiruss.repository.api declared as Resource
static Resource Repository.nullResource
           
 

Methods in org.xiruss.repository.api that return Resource
 Resource Repository.createResource(java.lang.String resourceName)
          Creates a new resource instance with the specified name.
 Resource NullRepository.createResource(java.lang.String resourceName)
           
 Resource Repository.getNullResource()
           
 Resource NullRepository.getNullResource()
           
 Resource Repository.getResourceById(java.lang.String resId)
          Gets a resource by its repository ID.
 Resource NullRepository.getResourceById(java.lang.String resId)
           
 Resource Repository.getResourceByKey(java.lang.String resourceName)
           
 Resource NullRepository.getResourceByKey(java.lang.String resourceName)
           
 

Methods in org.xiruss.repository.api with parameters of type Resource
 DependencyLink Repository.createDependency(java.lang.String dependencyType, Version sourceVersion, Resource targetResource, ResolutionPolicy policy)
          Create a new dependency between the specified Version and a target Resource, using the specified resolution policy.
 DependencyLink NullRepository.createDependency(java.lang.String dependencyType, Version sourceVersion, Resource targetResource, ResolutionPolicy policy)
           
 DependencyLink Repository.createDependency(java.lang.String dependencyType, Version sourceVersion, Resource targetResource, ResolutionPolicy policy, java.lang.Object sourceObject)
          Factory method for creating new dependency instances based on the dependency type value.
 DependencyLink NullRepository.createDependency(java.lang.String dependencyType, Version sourceVersion, Resource targetResource, ResolutionPolicy policy, java.lang.Object sourceObject)
           
 DependencyLink Repository.createDependency(java.lang.String dependencyClassName, Version sourceVersion, Resource targetResource, java.lang.String resolutionPolicyClassName)
          Creates a new dependency link instance of the specified class and using the specified resolution policy class.
 DependencyLink NullRepository.createDependency(java.lang.String dependencyClassName, Version sourceVersion, Resource targetResource, java.lang.String resolutionPolicyClassName)
           
 Version Repository.createVersion(java.lang.String name, Resource res, java.lang.Class versionSubClass)
          Creates a new version instance of the specified class.
 Version NullRepository.createVersion(java.lang.String name, Resource res, java.lang.Class versionSubClass)
           
 VersionMap Repository.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass)
          Returns a version map of versions of the specified type visible on the specified snapshot that have a dependency relationship to the specified resource.
 VersionMap NullRepository.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass)
           
 VersionMap Repository.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass, java.lang.String dependencyTypeName)
          Returns a version map of versions of the specified type visible on the specified snapshot that have a dependency relationship of the specified type to the specified resource.
 VersionMap NullRepository.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass, java.lang.String dependencyTypeName)
           
 VersionMap Repository.whereUsedOnSnapshot(Resource resource, Snapshot snapshot)
          Returns a version map of versions visible on the specified snapshot that have a dependency relationship to the specified resource.
 VersionMap NullRepository.whereUsedOnSnapshot(Resource resource, Snapshot snapshot)
           
 VersionMap Repository.whereUsedOnSnapshot(Resource resource, Snapshot snapshot, java.lang.String dependencyTypeName)
          Returns a version map of versions visible on the specified snapshot that have a dependency of the specified type to the specified resource.
 VersionMap NullRepository.whereUsedOnSnapshot(Resource resource, Snapshot snapshot, java.lang.String dependencyTypeName)
           
 

Uses of Resource in org.xiruss.repository.client.importers
 

Fields in org.xiruss.repository.client.importers declared as Resource
protected  Resource BosMember.existingResource
           
protected  Resource BosMember.resource
           
 

Methods in org.xiruss.repository.client.importers that return Resource
 Resource BosMember.getExistingResource()
           
 Resource BosMember.getResource()
           
 

Methods in org.xiruss.repository.client.importers with parameters of type Resource
 BosMember BoundedObjectSet.addMember(java.lang.String memberKey, Resource existingResource, XmlBosMember parentMember, java.lang.String memberName, Snapshot shotshot)
          Add a BOS member created from an existing repository resource.
static BosMember BosMemberFactory.createBosMember(BoundedObjectSet bos, java.lang.String memberKey, Resource existingResource, java.lang.String memberName, Snapshot snapshot)
           
protected  BosMember BoundedObjectSet.createBosMember(java.lang.Class bosMemberClass, java.lang.String memberKey, Resource existingResource, java.lang.String memberName)
           
 void DirectoryBosMember.init(BoundedObjectSet bos, java.lang.String memberKey, Resource res, java.lang.String memberName, Snapshot snapshot)
          Initialize a BOS member using an existing resource instead of a file to be imported.
 void BosMember.init(BoundedObjectSet bos, java.lang.String memberKey, Resource res, java.lang.String memberName, Snapshot snapshot)
          Initialize a BOS member using an existing resource instead of a file to be imported.
 void BosMember.setExistingResource(Resource resource)
           
 void BosMember.setResource(Resource res)
           
 

Uses of Resource in org.xiruss.repository.client.importers.xml
 

Methods in org.xiruss.repository.client.importers.xml with parameters of type Resource
 void XmlBosMember.init(BoundedObjectSet bos, java.lang.String memberKey, Resource res, java.lang.String memberName, Snapshot snapshot)
          Initialize a BOS member using an existing resource instead of a file to be imported.
 

Uses of Resource in org.xiruss.repository.common
 

Methods in org.xiruss.repository.common that return Resource
 Resource ResourceMapImpl.get(java.lang.String key)
           
 

Methods in org.xiruss.repository.common with parameters of type Resource
 boolean VersionByResourceMapImpl.containsKey(Resource res)
           
 Version VersionByResourceMapImpl.get(Resource key)
           
 void ResourceMapImpl.put(Resource res)
           
 void VersionByResourceMapImpl.put(Resource key, Version ver)
           
 void StringReportRepositoryVisitor.visitResource(Resource res)
           
 void HtmlReportRepositoryVisitor.visitResource(Resource res)
           
 

Uses of Resource in org.xiruss.repository.multiuserschema_aware
 

Methods in org.xiruss.repository.multiuserschema_aware that return Resource
 Resource MultiUserSchemaAwareRepositoryBase.getSchemaResource(java.lang.String schemaUri)
          Returns the resource of the specified schema.
 

Methods in org.xiruss.repository.multiuserschema_aware with parameters of type Resource
 void MultiUserSchemaAwareRepositoryBase.registerSchema(java.lang.String schemaUri, Resource schema)
          Registers a schema URI and its location.
 

Uses of Resource in org.xiruss.repository.schema_aware
 

Methods in org.xiruss.repository.schema_aware that return Resource
 Resource SchemaAwareRepositoryBase.getSchemaResource(java.lang.String schemaUri)
          Returns the resource of the specified schema.
 

Methods in org.xiruss.repository.schema_aware with parameters of type Resource
 void SchemaAwareRepositoryBase.registerSchema(java.lang.String schemaUri, Resource schema)
          Registers a schema URI and its location.
 

Uses of Resource in org.xiruss.repository.schema_aware.api
 

Methods in org.xiruss.repository.schema_aware.api that return Resource
 Resource SchemaAwareRepository.getSchemaResource(java.lang.String schemaUri)
          Returns the resource of the specified schema.
 

Methods in org.xiruss.repository.schema_aware.api with parameters of type Resource
 void SchemaAwareRepository.registerSchema(java.lang.String namespaceUri, Resource schema)
          Registers a schema URI and its location.
 

Uses of Resource in org.xiruss.repository.server
 

Classes in org.xiruss.repository.server that implement Resource
 class ResourceBase
          A SnapCM resource representing a set of versions.
 

Fields in org.xiruss.repository.server declared as Resource
static Resource RepositoryBase.nullResource
           
(package private)  Resource VersionBase.resource
           
 

Methods in org.xiruss.repository.server that return Resource
 Resource RepositoryBase.createResource(java.lang.String resourceName)
          Creates a new resource instance with the specified name.
 Resource RepositoryBase.getNullResource()
           
 Resource VersionBase.getResource()
           
 Resource RepositoryBase.getResourceById(java.lang.String resId)
          Gets a resource by its repository ID.
 Resource RepositoryBase.getResourceByKey(java.lang.String resourceName)
           
 Resource DependencyLinkBase.getTargetResource()
           
 

Methods in org.xiruss.repository.server with parameters of type Resource
 Version OnSnapShotResolutionPolicyBase.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
           
abstract  Version ResolutionPolicyBase.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
           
 Version SpecificVersionResolutionPolicyBase.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
           
 DependencyLink RepositoryBase.createDependency(java.lang.String dependencyType, Version sourceVersion, Resource targetResource, ResolutionPolicy policy)
           
 DependencyLink RepositoryBase.createDependency(java.lang.String dependencyType, Version sourceVersion, Resource targetResource, ResolutionPolicy policy, java.lang.Object sourceObject)
          Factory method for creating new dependency instances based on the dependency type value.
 DependencyLink RepositoryBase.createDependency(java.lang.String dependencyClassName, Version sourceVersion, Resource targetResource, java.lang.String resolutionPolicyClassName)
           
 Version RepositoryBase.createVersion(java.lang.String name, Resource res, java.lang.Class versionSubClass)
          Creates a new version instance of the specified class.
 boolean VersionBase.dependsOn(Resource resource)
          Returns true if the version has one or more dependency relationships of any type to the specified resource.
 boolean VersionBase.dependsOn(Resource resource, java.lang.String dependencyTypeName)
          Returns true if the version has one or more dependency relationships to the specified resource.
 java.lang.String RepositoryBase.getURLforResource(Resource targetRes)
          Given a resource, returns a relative URL using the default resolution policy (on snapshot).
 java.lang.String RepositoryBase.getUrlStringForResource(Resource resource)
           
 Version SnapshotBase.getVersion(Resource res)
          Given a resource, returns the version of that resource that has been created on or is effective on the snapshot.
 void DependencyLinkBase.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy)
           
 void DependencyLinkBase.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy, java.lang.Object dependencySource)
           
 void VersionBase.initialize(java.lang.String versionId, java.lang.String versionName, Resource res)
          Initialize the core properties of the version.
 void VersionBase.initialize(java.lang.String versionId, java.lang.String versionName, java.util.Set previousVersions, Resource res)
           
protected  void RepositoryBase.registerResource(Resource res)
          Convenience function of registering a Resource to the repository.
 void MutableSnapshotBase.removeCreatedVersion(Resource resource)
           
 boolean SnapshotBase.resourceIsVisible(Resource res)
           
protected  void VersionBase.setResource(Resource res)
           
 void DependencyLinkBase.setTargetResource(Resource resource)
           
 VersionMap RepositoryBase.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass)
          Returns a version map of versionSet visible on the specified snapshot that have a dependency relationship to the specified resource.
 VersionMap RepositoryBase.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass, java.lang.String dependencyTypeName)
          Returns a version map of versionSet visible on the specified snapshot that have a dependency relationship to the specified resource.
 VersionMap RepositoryBase.whereUsedOnSnapshot(Resource resource, Snapshot snapshot)
          Returns a version map of versionSet visible on the specified snapshot that have a dependency relationship to the specified resource.
 VersionMap RepositoryBase.whereUsedOnSnapshot(Resource resource, Snapshot snapshot, java.lang.String dependencyTypeName)
          Returns a version map of versionSet visible on the specified snapshot that have a dependency of the specified type to the specified resource.
 

Uses of Resource in org.xiruss.snapcm
 

Methods in org.xiruss.snapcm with parameters of type Resource
 Version MyResolutionPolicy.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
           
 

Uses of Resource in org.xiruss.snapcm.api
 

Classes in org.xiruss.snapcm.api that implement Resource
 class NullResource
           
 

Methods in org.xiruss.snapcm.api that return Resource
 Resource Version.getResource()
           
 Resource NullVersion.getResource()
           
 Resource DependencyLink.getTargetResource()
           
 Resource NullDependencyLink.getTargetResource()
           
 

Methods in org.xiruss.snapcm.api with parameters of type Resource
 Version ResolutionPolicy.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
          Applies a policy and returns a collection of zero or more result versions.
 Version NullResolutionPolicy.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
           
 boolean Version.dependsOn(Resource resource)
          Returns true if the version has one or more dependency relationships of any type to the specified resource.
 boolean NullVersion.dependsOn(Resource resource)
           
 boolean Version.dependsOn(Resource resource, java.lang.String dependencyTypeName)
          Returns true if the version has one or more dependency relationships to the specified resource.
 boolean NullVersion.dependsOn(Resource resource, java.lang.String dependencyTypeName)
           
 Version NullSnapshot.getVersion(Resource res)
           
 Version Snapshot.getVersion(Resource res)
          Given a resource, returns the version of that resource that has been created on or is effective on the snapshot.
 void DependencyLink.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy)
           
 void NullDependencyLink.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy)
           
 void DependencyLink.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy, java.lang.Object dependencySource)
           
 void NullDependencyLink.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy, java.lang.Object dependencySource)
           
 void Version.initialize(java.lang.String versionId, java.lang.String versionName, Resource res)
          Initialize the core properties of the version.
 void NullVersion.initialize(java.lang.String versionId, java.lang.String versionName, Resource res)
           
 void Version.initialize(java.lang.String versionId, java.lang.String versionName, java.util.Set previousVersions, Resource res)
           
 void NullVersion.initialize(java.lang.String versionId, java.lang.String versionName, java.util.Set previousVersions, Resource res)
           
 void MutableSnapshot.removeCreatedVersion(Resource resource)
          Removes the version for the specified resource from the created versions list.
 void NullMutableSnapshot.removeCreatedVersion(Resource resource)
           
 boolean NullSnapshot.resourceIsVisible(Resource res)
           
 boolean Snapshot.resourceIsVisible(Resource res)
           
 void DependencyLink.setTargetResource(Resource resource)
           
 void NullDependencyLink.setTargetResource(Resource resource)
           
 void RepositoryVisitor.visitResource(Resource res)
           
 

Uses of Resource in org.xiruss.snapcm.api.helpers
 

Methods in org.xiruss.snapcm.api.helpers that return Resource
 Resource ResourceMap.get(java.lang.String key)
           
 Resource NullResourceMap.get(java.lang.String key)
           
 

Methods in org.xiruss.snapcm.api.helpers with parameters of type Resource
 boolean VersionByResourceMap.containsKey(Resource res)
           
 boolean NullVersionByResourceMap.containsKey(Resource res)
           
 Version VersionByResourceMap.get(Resource key)
           
 Version NullVersionByResourceMap.get(Resource key)
           
 void ResourceMap.put(Resource resource)
           
 void NullResourceMap.put(Resource resource)
           
 void VersionByResourceMap.put(Resource key, Version ver)
           
 void NullVersionByResourceMap.put(Resource key, Version ver)
           
 

Uses of Resource in org.xiruss.util
 

Methods in org.xiruss.util that return Resource
static Resource AddressingUtil.getReferenceTargetResource(org.w3c.dom.Element elem, Resource baseResource)
          Given an element with an pointer attribute, resolves it to a resource inside the repository.
 

Methods in org.xiruss.util with parameters of type Resource
static Resource AddressingUtil.getReferenceTargetResource(org.w3c.dom.Element elem, Resource baseResource)
          Given an element with an pointer attribute, resolves it to a resource inside the repository.
 

Uses of Resource in org.xiruss.xirussrepository.api
 

Methods in org.xiruss.xirussrepository.api with parameters of type Resource
 java.lang.String XirussRepository.getUrlStringForResource(Resource targetResource)
           
 java.lang.String XirussRepository.getURLStringforResourceOnSnapshot(Resource targetRes, ResolutionPolicy policy)
          Constructs a URL for a resource that includes a resolution policy.
 VersionMap XirussRepository.whereUsedInCompoundDocOnSnapShot(Resource resource, Snapshot snapshot)
           
 

Uses of Resource in org.xiruss.xirussrepository.client
 

Classes in org.xiruss.xirussrepository.client that implement Resource
 class ResourceProxy
           
 

Methods in org.xiruss.xirussrepository.client that return Resource
 Resource XirussRepositoryProxy.createResource(java.lang.String resourceName)
           
 Resource XirussHttpApiClientHelper.createResource(java.lang.String resName)
           
 Resource XirussHttpApiClientHelper.createResource(java.lang.String resName, java.lang.String parms)
           
 Resource XirussRepositoryProxy.getNullResource()
           
 Resource VersionProxy.getResource()
           
(package private)  Resource XirussHttpApiClientHelper.getResource(java.lang.String objId)
           
 Resource XirussRepositoryProxy.getResourceById(java.lang.String resId)
           
 Resource XirussRepositoryProxy.getResourceByKey(java.lang.String resourceName)
           
 Resource XirussRepositoryProxy.getSchemaResource(java.lang.String namespaceUri)
           
 Resource DependencyLinkProxy.getTargetResource()
           
 

Methods in org.xiruss.xirussrepository.client with parameters of type Resource
 Version SpecificVersionResolutionPolicyProxy.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
          This is the base resolution behavior.
 Version ResolutionPolicyProxy.applyPolicy(Version sourceVersion, Resource targetResource, Snapshot onSnapshot)
          This is the base resolution behavior.
 boolean VersionByResourceMapClient.containsKey(Resource res)
           
 DependencyLink XirussRepositoryProxy.createDependency(java.lang.String dependencyClassName, Version sourceVersion, Resource targetResource, ResolutionPolicy policy)
           
 DependencyLink XirussRepositoryProxy.createDependency(java.lang.String dependencyType, Version sourceVersion, Resource targetResource, ResolutionPolicy policy, java.lang.Object sourceObject)
           
 DependencyLink XirussRepositoryProxy.createDependency(java.lang.String dependencyClassName, Version sourceVersion, Resource targetResource, java.lang.String resolutionPolicyClassName)
           
 Version XirussRepositoryProxy.createVersion(java.lang.String name, Resource res, java.lang.Class versionSubClass)
           
 boolean VersionProxy.dependsOn(Resource resource)
           
 boolean VersionProxy.dependsOn(Resource resource, java.lang.String dependencyTypeName)
           
 Version VersionByResourceMapClient.get(Resource res)
           
 java.lang.String XirussRepositoryProxy.getURLforResource(Resource targetRes)
           
 java.lang.String XirussRepositoryProxy.getUrlStringForResource(Resource resource)
           
 java.lang.String XirussRepositoryProxy.getURLStringforResourceOnSnapshot(Resource targetRes, ResolutionPolicy policy)
          Returns a path sequence that, when appended to the path for snapshot, will resolve to a version on that snapshot.
 Version SnapshotProxy.getVersion(Resource res)
           
 void DependencyLinkProxy.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy)
           
 void DependencyLinkProxy.initialize(Repository rep, java.lang.String objId, Version sourceVersion, Resource targetResource, java.lang.String dependencyTypeName, ResolutionPolicy policy, java.lang.Object dependencySource)
           
 void VersionProxy.initialize(java.lang.String versionId, java.lang.String versionName, Resource res)
           
 void VersionProxy.initialize(java.lang.String versionId, java.lang.String versionName, java.util.Set previousVersions, Resource res)
           
 void VersionByResourceMapClient.put(Resource res, Version ver)
           
 void XirussRepositoryProxy.registerSchema(java.lang.String namespaceUri, Resource schema)
           
 void MutableSnapshotProxy.removeCreatedVersion(Resource resource)
           
 boolean SnapshotProxy.resourceIsVisible(Resource res)
           
 void DependencyLinkProxy.setTargetResource(Resource resource)
           
 VersionMap XirussRepositoryProxy.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass)
           
 VersionMap XirussRepositoryProxy.whereUsedByTypeOnSnapshot(Resource resource, Snapshot snapshot, java.lang.Class versionClass, java.lang.String dependencyTypeName)
           
 VersionMap XirussRepositoryProxy.whereUsedInCompoundDocOnSnapShot(Resource resource, Snapshot snapshot)
           
 VersionMap XirussRepositoryProxy.whereUsedOnSnapshot(Resource resource, Snapshot snapshot)
           
 VersionMap XirussRepositoryProxy.whereUsedOnSnapshot(Resource resource, Snapshot snapshot, java.lang.String dependencyTypeName)
           
 

Uses of Resource in org.xiruss.xirussrepository.server
 

Methods in org.xiruss.xirussrepository.server with parameters of type Resource
 java.lang.String XirussRepositoryDefaultImpl.getURLStringforResourceOnSnapshot(Resource targetRes, ResolutionPolicy policy)
          Constructs a URL for a resource that includes a resolution policy.
 VersionMap XirussRepositoryDefaultImpl.whereUsedInCompoundDocOnSnapShot(Resource resource, Snapshot snapshot)
           
 

Uses of Resource in org.xiruss.xirussrepository.server.jetty.apiserver
 

Methods in org.xiruss.xirussrepository.server.jetty.apiserver with parameters of type Resource
 XmlStringBuffer ResourceResource.constructResourceResourceResult(Resource res, Snapshot onSnapshot)
           
 XmlStringBuffer ResourceResource.constructResourceResourceResultNoSnapshot(Resource res)
           
 

Constructors in org.xiruss.xirussrepository.server.jetty.apiserver with parameters of type Resource
ResourceResource(Repository rep, org.mortbay.http.HttpRequest request, Resource res)
           
ResourceResource(Repository rep, org.mortbay.http.HttpRequest request, Resource res, Snapshot onSnapshot)