KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > alfresco > example > webservice > repository > RepositoryServiceSoapPort


1 /**
2  * RepositoryServiceSoapPort.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.repository;
9
10 public interface RepositoryServiceSoapPort extends java.rmi.Remote JavaDoc {
11
12     /**
13      * Retrieves a list of stores where content resources are held.
14      */

15     public org.alfresco.example.webservice.types.Store[] getStores() throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
16
17     /**
18      * Executes a query against a store.
19      */

20     public org.alfresco.example.webservice.repository.QueryResult query(org.alfresco.example.webservice.types.Store store, org.alfresco.example.webservice.types.Query query, boolean includeMetaData) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
21
22     /**
23      * Executes a query to retrieve the children of the specified
24      * resource.
25      */

26     public org.alfresco.example.webservice.repository.QueryResult queryChildren(org.alfresco.example.webservice.types.Reference node) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
27
28     /**
29      * Executes a query to retrieve the parents of the specified resource.
30      */

31     public org.alfresco.example.webservice.repository.QueryResult queryParents(org.alfresco.example.webservice.types.Reference node) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
32
33     /**
34      * Executes a query to retrieve associated resources of the specified
35      * resource.
36      */

37     public org.alfresco.example.webservice.repository.QueryResult queryAssociated(org.alfresco.example.webservice.types.Reference node, org.alfresco.example.webservice.repository.Association[] association) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
38
39     /**
40      * Fetches the next batch of query results.
41      */

42     public org.alfresco.example.webservice.repository.QueryResult fetchMore(java.lang.String JavaDoc querySession) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
43
44     /**
45      * Executes a CML script to manipulate the contents of a Repository
46      * store.
47      */

48     public org.alfresco.example.webservice.repository.UpdateResult update(org.alfresco.example.webservice.types.CML statements) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
49
50     /**
51      * Describes a content resource.
52      */

53     public org.alfresco.example.webservice.types.NodeDefinition[] describe(org.alfresco.example.webservice.types.Predicate items) throws java.rmi.RemoteException JavaDoc, org.alfresco.example.webservice.repository.RepositoryFault;
54 }
55
Popular Tags