|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
public interface I_CmsVfsServiceAsync
An asynchronous service interface for retrieving information about the VFS tree.
| Method Summary | |
|---|---|
void |
deleteResource(java.lang.String sitePath,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Deletes a resource from the VFS. |
void |
forceUnlock(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Forces a resource to be unlocked. |
void |
getAvailabilityInfo(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<CmsAvailabilityInfoBean> callback)
Gets a CmsAvailabilityInfoBean for a given resource. |
void |
getAvailabilityInfo(java.lang.String vfsPath,
com.google.gwt.user.client.rpc.AsyncCallback<CmsAvailabilityInfoBean> callback)
Gets a CmsAvailabilityInfoBean for a given resource. |
void |
getBrokenLinks(java.lang.String sitePath,
com.google.gwt.user.client.rpc.AsyncCallback<CmsDeleteResourceBean> callback)
Returns a list of potentially broken links, if the given resource was deleted. |
void |
getChildren(java.lang.String path,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<CmsVfsEntryBean>> callback)
Fetches the list of children of a path. |
void |
getLockReportInfo(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<CmsLockReportInfo> callback)
Returns the lock report info. |
void |
getPageInfo(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<CmsListInfoBean> callback)
Gets a CmsListInfoBean for a given resource. |
void |
getPageInfo(java.lang.String vfsPath,
com.google.gwt.user.client.rpc.AsyncCallback<CmsListInfoBean> callback)
Gets a CmsListInfoBean for a given resource. |
void |
getRootEntries(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<CmsVfsEntryBean>> callback)
Returns the root entries of the VFS. |
void |
getSitePath(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.String> callback)
Returns the site-path for the resource with the given id. |
void |
loadPropertyData(CmsUUID id,
com.google.gwt.user.client.rpc.AsyncCallback<CmsPropertiesBean> callback)
Load the data necessary to edit the properties of a resource. |
void |
prepareEdit(CmsUUID currentPage,
java.lang.String fileNameWithMacros,
com.google.gwt.user.client.rpc.AsyncCallback<CmsPrepareEditResponse> callback)
Prepares to edit a file in the XML content editor. |
void |
saveProperties(CmsPropertyChangeSet changes,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
Saves a set of property changes. |
void |
substituteLinkForRootPath(java.lang.String currentSiteRoot,
java.lang.String rootPath,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.String> callback)
Returns the absolute link to the given root path. |
| Method Detail |
|---|
void deleteResource(java.lang.String sitePath,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
sitePath - the site path of the resource to deletecallback - the callback
void forceUnlock(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
structureId - the structure id of the resource to unlockcallback - the callback
void getAvailabilityInfo(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<CmsAvailabilityInfoBean> callback)
CmsAvailabilityInfoBean for a given resource.
structureId - the structure id to create the CmsAvailabilityInfoBean forcallback - the asynchronous callback
void getAvailabilityInfo(java.lang.String vfsPath,
com.google.gwt.user.client.rpc.AsyncCallback<CmsAvailabilityInfoBean> callback)
CmsAvailabilityInfoBean for a given resource.
vfsPath - the vfs path to create the CmsAvailabilityInfoBean forcallback - the asynchronous callback
void getBrokenLinks(java.lang.String sitePath,
com.google.gwt.user.client.rpc.AsyncCallback<CmsDeleteResourceBean> callback)
sitePath - the resource site-pathcallback - the callback
void getChildren(java.lang.String path,
com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<CmsVfsEntryBean>> callback)
path - the path for which the list of children should be retrievedcallback - the asynchronous callback
void getLockReportInfo(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<CmsLockReportInfo> callback)
structureId - the structure id of the resource to get the report forcallback - the callback
void getPageInfo(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<CmsListInfoBean> callback)
CmsListInfoBean for a given resource.
structureId - the structure id to create the CmsListInfoBean forcallback - the asynchronous callback
void getPageInfo(java.lang.String vfsPath,
com.google.gwt.user.client.rpc.AsyncCallback<CmsListInfoBean> callback)
CmsListInfoBean for a given resource.
vfsPath - the vfs path to create the CmsListInfoBean forcallback - the asynchronous callbackvoid getRootEntries(com.google.gwt.user.client.rpc.AsyncCallback<java.util.List<CmsVfsEntryBean>> callback)
callback - the asynchronous callback
void getSitePath(CmsUUID structureId,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.String> callback)
structureId - the structure idcallback - the asynchronous callback
void loadPropertyData(CmsUUID id,
com.google.gwt.user.client.rpc.AsyncCallback<CmsPropertiesBean> callback)
id - the structure id of a resourcecallback - the asynchronous callback
void prepareEdit(CmsUUID currentPage,
java.lang.String fileNameWithMacros,
com.google.gwt.user.client.rpc.AsyncCallback<CmsPrepareEditResponse> callback)
currentPage - the current page from which the editor should be openedfileNameWithMacros - the file name, which may contain macroscallback - the asynchronous callback
void saveProperties(CmsPropertyChangeSet changes,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.Void> callback)
changes - the property changescallback - the asynchronous callback
@SynchronizedRpcRequest
void substituteLinkForRootPath(java.lang.String currentSiteRoot,
java.lang.String rootPath,
com.google.gwt.user.client.rpc.AsyncCallback<java.lang.String> callback)
currentSiteRoot - the current siterootPath - the root pathcallback - the asynchronous callback
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||