1
7
8 package com.liferay.client.soap.portlet.documentlibrary.service.http;
9
10 public interface DLFolderServiceSoap extends java.rmi.Remote {
11 public long getFolderId(long groupId, long parentFolderId, java.lang.String name) throws java.rmi.RemoteException;
12 public com.liferay.client.soap.portlet.documentlibrary.model.DLFolderSoap getFolder(long folderId) throws java.rmi.RemoteException;
13 public com.liferay.client.soap.portlet.documentlibrary.model.DLFolderSoap getFolder(long groupId, long parentFolderId, java.lang.String name) throws java.rmi.RemoteException;
14 public com.liferay.client.soap.portlet.documentlibrary.model.DLFolderSoap addFolder(long groupId, long parentFolderId, java.lang.String name, java.lang.String description, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
15 public com.liferay.client.soap.portlet.documentlibrary.model.DLFolderSoap copyFolder(long groupId, long sourceFolderId, long parentFolderId, java.lang.String name, java.lang.String description, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
16 public void deleteFolder(long groupId, long parentFolderId, java.lang.String name) throws java.rmi.RemoteException;
17 public void deleteFolder(long folderId) throws java.rmi.RemoteException;
18 public int getFileEntriesAndFileShortcutsCount(long groupId, long folderId, int status) throws java.rmi.RemoteException;
19 public int getFileEntriesAndFileShortcutsCount(long groupId, long[] folderIds, int status) throws java.rmi.RemoteException;
20 public com.liferay.client.soap.portlet.documentlibrary.model.DLFolderSoap[] getFolders(long groupId, long parentFolderId, int start, int end) throws java.rmi.RemoteException;
21 public com.liferay.client.soap.portlet.documentlibrary.model.DLFolderSoap[] getFolders(long groupId, long parentFolderId) throws java.rmi.RemoteException;
22 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId, long folderId, int status) throws java.rmi.RemoteException;
23 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId, long[] folderIds, int status) throws java.rmi.RemoteException;
24 public int getFoldersCount(long groupId, long parentFolderId) throws java.rmi.RemoteException;
25 public void getSubfolderIds(long[] folderIds, long groupId, long folderId) throws java.rmi.RemoteException;
26 public boolean hasInheritableLock(long folderId) throws java.rmi.RemoteException;
27 public void unlockFolder(long groupId, long parentFolderId, java.lang.String name, java.lang.String lockUuid) throws java.rmi.RemoteException;
28 public void unlockFolder(long groupId, long folderId, java.lang.String lockUuid) throws java.rmi.RemoteException;
29 public com.liferay.client.soap.portlet.documentlibrary.model.DLFolderSoap updateFolder(long folderId, long parentFolderId, java.lang.String name, java.lang.String description, com.liferay.client.soap.portal.service.ServiceContext serviceContext) throws java.rmi.RemoteException;
30 public boolean verifyInheritableLock(long folderId, java.lang.String lockUuid) throws java.rmi.RemoteException;
31 }
32