1 /**2 * ClassificationServiceSoapPort.java3 *4 * This file was auto-generated from WSDL5 * 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 {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 , 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 , 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 , 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 , org.alfresco.repo.webservice.classification.ClassificationFault;31 32 /**33 * Describe a classification in terms of how it is represented34 * in the meta model i.e. is it an aspect, which property holds the applied35 * category.36 */37 public org.alfresco.repo.webservice.types.ClassDefinition describeClassification(java.lang.String classification) throws java.rmi.RemoteException , org.alfresco.repo.webservice.classification.ClassificationFault;38 }39