1
7
8 package com.liferay.client.soap.portlet.messageboards.service.http;
9
10 public interface MBCategoryServiceSoap extends java.rmi.Remote {
11 public com.liferay.client.soap.portlet.messageboards.model.MBCategorySoap getCategory(long categoryId) throws java.rmi.RemoteException;
12 public com.liferay.client.soap.portlet.messageboards.model.MBCategorySoap addCategory(long plid, long parentCategoryId, java.lang.String name, java.lang.String description, boolean addCommunityPermissions, boolean addGuestPermissions) throws java.rmi.RemoteException;
13 public com.liferay.client.soap.portlet.messageboards.model.MBCategorySoap addCategory(long plid, long parentCategoryId, java.lang.String name, java.lang.String description, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions) throws java.rmi.RemoteException;
14 public void deleteCategory(long categoryId) throws java.rmi.RemoteException;
15 public com.liferay.client.soap.portlet.messageboards.model.MBCategorySoap[] getCategories(long groupId, long parentCategoryId, int start, int end) throws java.rmi.RemoteException;
16 public int getCategoriesCount(long groupId, long parentCategoryId) throws java.rmi.RemoteException;
17 public void subscribeCategory(long categoryId) throws java.rmi.RemoteException;
18 public void unsubscribeCategory(long categoryId) throws java.rmi.RemoteException;
19 public com.liferay.client.soap.portlet.messageboards.model.MBCategorySoap updateCategory(long categoryId, long parentCategoryId, java.lang.String name, java.lang.String description, boolean mergeWithParentCategory) throws java.rmi.RemoteException;
20 }
21