Uses of Interface
org.xiruss.repository.api.StorageObjectData

Packages that use StorageObjectData
org.xiruss.repository.api Defines the repository-level interfaces common to clients and servers. 
org.xiruss.repository.server Implementation classes for the core server-side objects that make up a SnapCM repository. 
org.xiruss.repository.server.storagemanagement Contains classes that manage the storage of Versions that are storage objects (that is, they contain data and act like files). 
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. 
 

Uses of StorageObjectData in org.xiruss.repository.api
 

Methods in org.xiruss.repository.api that return StorageObjectData
 StorageObjectData StorageManager.getStorageObjectData(StorageObject so)
          Creates a new storage object version.
 StorageObjectData NullStorageManager.getStorageObjectData(StorageObject so)
           
 

Methods in org.xiruss.repository.api with parameters of type StorageObjectData
 void StorageObject.setStorageObjectData(StorageObjectData data)
          Sets the storage object data object that provides access to the data as managed by the repository's storage manager.
 

Uses of StorageObjectData in org.xiruss.repository.server
 

Methods in org.xiruss.repository.server with parameters of type StorageObjectData
 void StorageObjectBase.setStorageObjectData(StorageObjectData data)
           
 

Uses of StorageObjectData in org.xiruss.repository.server.storagemanagement
 

Classes in org.xiruss.repository.server.storagemanagement that implement StorageObjectData
 class FileStorageObjectData
          Storage object data implementation that stores the data as a file on a file system.
 class InMemoryStorageObjectData
          Storage object data implementation that uses a string buffer to hold the storage object data.
 class StorageObjectDataBase
           
 

Methods in org.xiruss.repository.server.storagemanagement that return StorageObjectData
 StorageObjectData InMemoryStorageManager.getStorageObjectData(StorageObject so)
           
 StorageObjectData FileStorageManager.getStorageObjectData(StorageObject so)
           
 

Uses of StorageObjectData in org.xiruss.xirussrepository.client
 

Methods in org.xiruss.xirussrepository.client with parameters of type StorageObjectData
 void StorageObjectProxy.setStorageObjectData(StorageObjectData data)