|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface IIntegrationDataAppSoap
Provides SOAP web service for the integration data application.
| Method Summary | |
|---|---|
SoapNamedValues |
getData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId)
Get 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)
Get data for an object from the integration data service |
java.lang.String |
getNamespaceId(java.lang.String sessionId,
java.lang.String name)
Get the key to an existing namespace. |
void |
putData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
SoapNamedValues namedValues)
Add or replace 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)
Add or replace a single integration data value for the specified object. |
java.lang.String |
registerNamespace(java.lang.String sessionId,
java.lang.String name)
Register a new namespace |
void |
removeData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String[] keys)
Remove 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)
Remove a single integration data value from the specified object. |
void |
setData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
SoapNamedValues namedValues)
Deprecated. Use putData instead. |
void |
setDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key,
java.lang.String value)
Deprecated. Use putDataByKey instead. |
| Method Detail |
|---|
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 register
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.ObjectAlreadyExistsFault - when the specified name already exists
com.vasoftware.sf.soap44.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 get
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the specified name doesn't exist.
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
java.rmi.RemoteException
void setData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
SoapNamedValues namedValues)
throws java.rmi.RemoteException
putData instead.
sessionId - SOAP session id.namespaceId - The namespace to store data underobjectId - The object to associate the data withnamedValues - Key value pairs of data to associate
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to store data on the object
java.rmi.RemoteException
void setDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key,
java.lang.String value)
throws java.rmi.RemoteException
putDataByKey instead.
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 store
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to store data on the object
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 associate
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to store data on the object
java.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 store
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to store data on the object
java.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.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to store data on the object
java.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.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to store data on the object
java.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 for
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to get data on the object
java.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 retrieve
com.vasoftware.sf.soap44.fault.InvalidSessionFault - when the sessionId is invalid.
com.vasoftware.sf.soap44.fault.NoSuchObjectFault - when the object id doesn't exist
com.vasoftware.sf.soap44.fault.SystemFault - when an unexpected system error occurs.
com.vasoftware.sf.soap44.fault.PermissionDeniedFault - when the user doesn't have permission to get data on the object
java.rmi.RemoteException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||