KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > alfresco > example > webservice > content > ContentServiceSoapPort


1 /**
2  * ContentServiceSoapPort.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2.1 Jun 14, 2005 (09:15:57 EDT) WSDL2Java emitter.
6  */

7
8 package org.alfresco.example.webservice.content;
9
10 public interface ContentServiceSoapPort extends java.rmi.Remote JavaDoc {
11
12     /**
13      * Describes one or more content streams.
14      */

15     public org.alfresco.example.webservice.types.Content[] describe(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.content.ContentFault;
16
17     /**
18      * Retrieves content from the repository.
19      */

20     public org.alfresco.example.webservice.content.ReadResult read(org.alfresco.example.webservice.types.Reference node) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.content.ContentFault;
21
22     /**
23      * Writes content to the repository.
24      */

25     public void write(org.alfresco.example.webservice.types.Reference node, byte[] content) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.content.ContentFault;
26
27     /**
28      * Creates new content in the repository.
29      */

30     public org.alfresco.example.webservice.types.Content create(org.alfresco.example.webservice.types.ParentReference parent, java.lang.String JavaDoc name, org.alfresco.example.webservice.types.ContentFormat format, byte[] content) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.content.ContentFault;
31
32     /**
33      * Deletes content from the repository.
34      */

35     public org.alfresco.example.webservice.types.Reference[] delete(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.content.ContentFault;
36
37     /**
38      * Determines whether content exists in the repository.
39      */

40     public org.alfresco.example.webservice.content.ExistsResult[] exists(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.content.ContentFault;
41 }
42
Popular Tags