1 7 8 package org.alfresco.example.webservice.authoring; 9 10 public interface AuthoringServiceSoapPort extends java.rmi.Remote { 11 12 15 public org.alfresco.example.webservice.authoring.CheckoutResult checkout(org.alfresco.example.webservice.types.Predicate items, org.alfresco.example.webservice.types.ParentReference destination) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 16 17 20 public org.alfresco.example.webservice.authoring.CheckinResult checkin(org.alfresco.example.webservice.types.Predicate items, org.alfresco.example.webservice.types.NamedValue[] comments, boolean keepCheckedOut) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 21 22 26 public org.alfresco.example.webservice.types.Reference checkinExternal(org.alfresco.example.webservice.types.Predicate items, org.alfresco.example.webservice.types.NamedValue[] comments, boolean keepCheckedOut, org.alfresco.example.webservice.types.ContentFormat format, byte[] content) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 27 28 31 public org.alfresco.example.webservice.authoring.CancelCheckoutResult cancelCheckout(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 32 33 36 public org.alfresco.example.webservice.types.Reference[] lock(org.alfresco.example.webservice.types.Predicate items, boolean lockChildren, org.alfresco.example.webservice.authoring.LockTypeEnum lockType) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 37 38 41 public org.alfresco.example.webservice.types.Reference[] unlock(org.alfresco.example.webservice.types.Predicate items, boolean unlockChildren) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 42 43 46 public org.alfresco.example.webservice.authoring.LockStatus[] getLockStatus(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 47 48 51 public org.alfresco.example.webservice.authoring.VersionResult createVersion(org.alfresco.example.webservice.types.Predicate items, org.alfresco.example.webservice.types.NamedValue[] comments, boolean versionChildren) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 52 53 56 public org.alfresco.example.webservice.types.VersionHistory getVersionHistory(org.alfresco.example.webservice.types.Reference node) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 57 58 61 public void revertVersion(org.alfresco.example.webservice.types.Reference node, java.lang.String versionLabel) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 62 63 66 public org.alfresco.example.webservice.types.VersionHistory deleteAllVersions(org.alfresco.example.webservice.types.Reference node) throws java.rmi.RemoteException , org.alfresco.example.webservice.authoring.AuthoringFault; 67 } 68 | Popular Tags |