|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.collabnet.ce.soap60.webservices.WebService
com.collabnet.ce.soap60.webservices.integrationdata.IntegrationDataAppSoap
public class IntegrationDataAppSoap
Provides SOAP web service for the integration data application.
| Constructor Summary | |
|---|---|
IntegrationDataAppSoap()
|
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class com.collabnet.ce.soap60.webservices.WebService |
|---|
assertNormalProject, assertProjectGroup, canGiveFullUserDetails, checkAndSaveSessionId, checkGeneralPermission, checkPermission, checkPermission, checkSiteWidePermission, downloadFile, generateFolderName, getCategorization, getDiscussion, getDocMan, getDocumentRootFolder, getFolderKey, getFolderPath, getFolderPath, getFolderPath, getFrs, getIntegrationData, getItemPath, getItemPath, getLocale, getNews, getNulledMinSoapDate, getObjectKey, getObjectPath, getOperation, getPages, getPlanning, getPluggableComponent, getProjectId, getProjectPath, getProjectPath, getRbac, getScm, getSearch, getSession, getSessionKey, getSfMain, getStoredFileSize, getStoredFileText, getTaskMgr, getTemplate, getTracker, getUserName, getWiki, hasPermission, hasSiteWidePermission, isFolderResource, isProjectGroup, isProjectId, isStrEmpty, isSuperUser, isValidEmail, makeStoredFileDO, requireProjectAdminPermission, setPartialOrFullUserData, setUserNameToResponse, storeFile, storeFile, storeTextFile, validateChoice, validateChoice, validateString, validateStringArray, validateWikiPageName |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public IntegrationDataAppSoap()
| Method Detail |
|---|
public java.lang.String registerNamespace(java.lang.String sessionId,
java.lang.String name)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault
registerNamespace in interface IIntegrationDataAppSoapsessionId - SOAP session id.name - The name of the namespace to register
com.collabnet.ce.soap60.fault.InvalidSessionFault - when the sessionId is invalid.
com.collabnet.ce.soap60.fault.ObjectAlreadyExistsFault - when the specified name already exists
com.collabnet.ce.soap60.fault.SystemFault - when an unexpected system error occurs.
public java.lang.String getNamespaceId(java.lang.String sessionId,
java.lang.String name)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.NoSuchObjectFault
getNamespaceId in interface IIntegrationDataAppSoapsessionId - SOAP session id.name - The name of the namespace to get
com.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.
public void putData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
SoapNamedValues namedValues)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.NoSuchObjectFault,
com.collabnet.ce.soap60.fault.PermissionDeniedFault
putData in interface IIntegrationDataAppSoapsessionId - 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.collabnet.ce.soap60.fault.InvalidSessionFault - when the sessionId is invalid.
com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the object id doesn't exist
com.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 object
public void putDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key,
java.lang.String value)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.NoSuchObjectFault,
com.collabnet.ce.soap60.fault.PermissionDeniedFault
putDataByKey in interface IIntegrationDataAppSoapsessionId - 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.collabnet.ce.soap60.fault.InvalidSessionFault - when the sessionId is invalid.
com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the object id doesn't exist
com.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 object
public void removeData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String[] keys)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.NoSuchObjectFault,
com.collabnet.ce.soap60.fault.PermissionDeniedFault
removeData in interface IIntegrationDataAppSoapsessionId - 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 exist
com.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 object
public void removeDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.NoSuchObjectFault,
com.collabnet.ce.soap60.fault.PermissionDeniedFault
removeDataByKey in interface IIntegrationDataAppSoapsessionId - 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 exist
com.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 object
public SoapNamedValues getData(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.NoSuchObjectFault,
com.collabnet.ce.soap60.fault.PermissionDeniedFault
getData in interface IIntegrationDataAppSoapsessionId - SOAP session id.namespaceId - The namespace to get data underobjectId - The object to get the data for
com.collabnet.ce.soap60.fault.InvalidSessionFault - when the sessionId is invalid.
com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the object id doesn't exist
com.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 object
public java.lang.String getDataByKey(java.lang.String sessionId,
java.lang.String namespaceId,
java.lang.String objectId,
java.lang.String key)
throws com.collabnet.ce.soap60.fault.InvalidSessionFault,
com.collabnet.ce.soap60.fault.SystemFault,
com.collabnet.ce.soap60.fault.NoSuchObjectFault,
com.collabnet.ce.soap60.fault.PermissionDeniedFault
getDataByKey in interface IIntegrationDataAppSoapsessionId - 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.collabnet.ce.soap60.fault.InvalidSessionFault - when the sessionId is invalid.
com.collabnet.ce.soap60.fault.NoSuchObjectFault - when the object id doesn't exist
com.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 object
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||