public interface IIntegrationDataAppSoap
Modifier and Type | Method and Description |
---|---|
SoapNamedValues |
getData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId)
Gets data for an object from the integration data service
|
java.lang.String |
getDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key)
Gets data for an object from the integration data service
|
java.lang.String |
getNamespaceId(java.lang.String sessionId,
java.lang.String name)
Gets the key to an existing namespace.
|
void |
putData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
SoapNamedValues namedValues)
Adds or replaces a set of integration data values for the specified object.
|
void |
putDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key,
java.lang.String value)
Adds or replaces a single integration data value for the specified object.
|
java.lang.String |
registerNamespace(java.lang.String sessionId,
java.lang.String name)
Registers a new namespace
|
void |
removeData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String[] keys)
Removes a set of integration data values from the specified object.
|
void |
removeDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key)
Removes a single integration data value from the specified object.
|
java.lang.String registerNamespace(java.lang.String sessionId, java.lang.String name) throws java.rmi.RemoteException
sessionId
- SOAP session id.name
- The name of the namespace to registercom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault
- when the specified name already existscom.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.java.rmi.RemoteException
java.lang.String getNamespaceId(java.lang.String sessionId, java.lang.String name) throws java.rmi.RemoteException
sessionId
- SOAP session id.name
- The name of the namespace to getcom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the specified name doesn't exist.com.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.java.rmi.RemoteException
void putData(java.lang.String sessionId, java.lang.String namespaceId, java.lang.String objectId, SoapNamedValues namedValues) throws java.rmi.RemoteException
sessionId
- SOAP session id.namespaceId
- The namespace to store data underobjectId
- The object to associate the data withnamedValues
- Key value pairs of data to associatecom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the object id doesn't existcom.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user doesn't have permission to store data on the objectjava.rmi.RemoteException
void putDataByKey(java.lang.String sessionId, java.lang.String namespaceId, java.lang.String objectId, java.lang.String key, java.lang.String value) throws java.rmi.RemoteException
sessionId
- SOAP session id.namespaceId
- The namespace to store data underobjectId
- The object to associate the data withkey
- The key of the piece of data to storevalue
- The value to storecom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the object id doesn't existcom.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user doesn't have permission to store data on the objectjava.rmi.RemoteException
void removeData(java.lang.String sessionId, java.lang.String namespaceId, java.lang.String objectId, java.lang.String[] keys) throws java.rmi.RemoteException
sessionId
- SOAP session id.namespaceId
- The namespace to store data underobjectId
- The object to associate the data withkeys
- Integration data keys (and associated values) to remove.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the object id doesn't existcom.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user doesn't have permission to store data on the objectjava.rmi.RemoteException
void removeDataByKey(java.lang.String sessionId, java.lang.String namespaceId, java.lang.String objectId, java.lang.String key) throws java.rmi.RemoteException
sessionId
- SOAP session id.namespaceId
- The namespace to store data underobjectId
- The object to associate the data withkey
- Integration data key (and associated value) to remove.com.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the object id doesn't existcom.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user doesn't have permission to store data on the objectjava.rmi.RemoteException
SoapNamedValues getData(java.lang.String sessionId, java.lang.String namespaceId, java.lang.String objectId) throws java.rmi.RemoteException
sessionId
- SOAP session id.namespaceId
- The namespace to get data underobjectId
- The object to get the data forcom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the object id doesn't existcom.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user doesn't have permission to get data on the objectjava.rmi.RemoteException
java.lang.String getDataByKey(java.lang.String sessionId, java.lang.String namespaceId, java.lang.String objectId, java.lang.String key) throws java.rmi.RemoteException
sessionId
- SOAP session id.namespaceId
- The namespace to get data underobjectId
- The object to get the data forkey
- The key of the piece of data to retrievecom.collabnet.ce.soap60.fault.InvalidSessionFault
- when the sessionId is invalid.com.collabnet.ce.soap60.fault.NoSuchObjectFault
- when the object id doesn't existcom.collabnet.ce.soap60.fault.SystemFault
- when an unexpected system error occurs.com.collabnet.ce.soap60.fault.PermissionDeniedFault
- when the user doesn't have permission to get data on the objectjava.rmi.RemoteException