KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > alfresco > repo > webservice > classification > ClassificationServiceSoapPort


1 /**
2  * ClassificationServiceSoapPort.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.3 Oct 05, 2005 (05:23:37 EDT) WSDL2Java emitter.
6  */

7
8 package org.alfresco.repo.webservice.classification;
9
10 public interface ClassificationServiceSoapPort extends java.rmi.Remote JavaDoc {
11
12     /**
13      * Gets available classifications.
14      */

15     public org.alfresco.repo.webservice.types.Classification[] getClassifications(org.alfresco.repo.webservice.types.Store store) throws java.rmi.RemoteException JavaDoc, org.alfresco.repo.webservice.classification.ClassificationFault;
16
17     /**
18      * Gets child categories for the specified parent category.
19      */

20     public org.alfresco.repo.webservice.types.Category[] getChildCategories(org.alfresco.repo.webservice.types.Reference parentCategory) throws java.rmi.RemoteException JavaDoc, org.alfresco.repo.webservice.classification.ClassificationFault;
21
22     /**
23      * Gets the categories applied to the specified content resource.
24      */

25     public org.alfresco.repo.webservice.classification.CategoriesResult[] getCategories(org.alfresco.repo.webservice.types.Predicate items) throws java.rmi.RemoteException JavaDoc, org.alfresco.repo.webservice.classification.ClassificationFault;
26
27     /**
28      * Modifies the categories applied to the specified content resource.
29      */

30     public org.alfresco.repo.webservice.classification.CategoriesResult[] setCategories(org.alfresco.repo.webservice.types.Predicate items, org.alfresco.repo.webservice.classification.AppliedCategory[] categories) throws java.rmi.RemoteException JavaDoc, org.alfresco.repo.webservice.classification.ClassificationFault;
31
32     /**
33      * Describe a classification in terms of how it is represented
34      * in the meta model i.e. is it an aspect, which property holds the applied
35      * category.
36      */

37     public org.alfresco.repo.webservice.types.ClassDefinition describeClassification(java.lang.String JavaDoc classification) throws java.rmi.RemoteException JavaDoc, org.alfresco.repo.webservice.classification.ClassificationFault;
38 }
39
Popular Tags