1 7 8 package org.alfresco.example.webservice.content; 9 10 public interface ContentServiceSoapPort extends java.rmi.Remote { 11 12 15 public org.alfresco.example.webservice.types.Content[] describe(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException , org.alfresco.example.webservice.content.ContentFault; 16 17 20 public org.alfresco.example.webservice.content.ReadResult read(org.alfresco.example.webservice.types.Reference node) throws java.rmi.RemoteException , org.alfresco.example.webservice.content.ContentFault; 21 22 25 public void write(org.alfresco.example.webservice.types.Reference node, byte[] content) throws java.rmi.RemoteException , org.alfresco.example.webservice.content.ContentFault; 26 27 30 public org.alfresco.example.webservice.types.Content create(org.alfresco.example.webservice.types.ParentReference parent, java.lang.String name, org.alfresco.example.webservice.types.ContentFormat format, byte[] content) throws java.rmi.RemoteException , org.alfresco.example.webservice.content.ContentFault; 31 32 35 public org.alfresco.example.webservice.types.Reference[] delete(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException , org.alfresco.example.webservice.content.ContentFault; 36 37 40 public org.alfresco.example.webservice.content.ExistsResult[] exists(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException , org.alfresco.example.webservice.content.ContentFault; 41 } 42 | Popular Tags |