1
7
8 package com.liferay.client.soap.portlet.asset.service.http;
9
10 public interface AssetCategoryServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.soap.portlet.asset.model.AssetCategorySoap getCategory(long categoryId) throws java.rmi.RemoteException;
12 public void deleteCategory(long categoryId) throws java.rmi.RemoteException;
13 public com.liferay.client.soap.portlet.asset.model.AssetCategorySoap[] getChildCategories(long parentCategoryId) throws java.rmi.RemoteException;
14 public com.liferay.client.soap.portlet.asset.model.AssetCategorySoap[] getVocabularyCategories(long vocabularyId) throws java.rmi.RemoteException;
15 public com.liferay.client.soap.portlet.asset.model.AssetCategorySoap[] getVocabularyRootCategories(long vocabularyId) throws java.rmi.RemoteException;
16 public java.lang.Object search(long groupId, java.lang.String name, java.lang.String[] categoryProperties, int start, int end) throws java.rmi.RemoteException;
17 public com.liferay.client.soap.portlet.asset.model.AssetCategorySoap[] getCategories(java.lang.String className, long classPK) throws java.rmi.RemoteException;
18 }
19