1
14
15 package com.liferay.portlet.messageboards.service.http;
16
17 import com.liferay.portal.kernel.log.Log;
18 import com.liferay.portal.kernel.log.LogFactoryUtil;
19
20 import com.liferay.portlet.messageboards.service.MBThreadServiceUtil;
21
22 import java.rmi.RemoteException;
23
24
74 public class MBThreadServiceSoap {
75 public static void deleteThread(long threadId) throws RemoteException {
76 try {
77 MBThreadServiceUtil.deleteThread(threadId);
78 }
79 catch (Exception e) {
80 _log.error(e, e);
81
82 throw new RemoteException(e.getMessage());
83 }
84 }
85
86 public static com.liferay.portlet.messageboards.model.MBThreadSoap[] getThreads(
87 long groupId, long categoryId, int status, int start, int end)
88 throws RemoteException {
89 try {
90 java.util.List<com.liferay.portlet.messageboards.model.MBThread> returnValue =
91 MBThreadServiceUtil.getThreads(groupId, categoryId, status,
92 start, end);
93
94 return com.liferay.portlet.messageboards.model.MBThreadSoap.toSoapModels(returnValue);
95 }
96 catch (Exception e) {
97 _log.error(e, e);
98
99 throw new RemoteException(e.getMessage());
100 }
101 }
102
103 public static int getThreadsCount(long groupId, long categoryId, int status)
104 throws RemoteException {
105 try {
106 int returnValue = MBThreadServiceUtil.getThreadsCount(groupId,
107 categoryId, status);
108
109 return returnValue;
110 }
111 catch (Exception e) {
112 _log.error(e, e);
113
114 throw new RemoteException(e.getMessage());
115 }
116 }
117
118 public static com.liferay.portlet.messageboards.model.MBThreadSoap moveThread(
119 long categoryId, long threadId) throws RemoteException {
120 try {
121 com.liferay.portlet.messageboards.model.MBThread returnValue = MBThreadServiceUtil.moveThread(categoryId,
122 threadId);
123
124 return com.liferay.portlet.messageboards.model.MBThreadSoap.toSoapModel(returnValue);
125 }
126 catch (Exception e) {
127 _log.error(e, e);
128
129 throw new RemoteException(e.getMessage());
130 }
131 }
132
133 public static com.liferay.portlet.messageboards.model.MBThreadSoap splitThread(
134 long messageId, com.liferay.portal.service.ServiceContext serviceContext)
135 throws RemoteException {
136 try {
137 com.liferay.portlet.messageboards.model.MBThread returnValue = MBThreadServiceUtil.splitThread(messageId,
138 serviceContext);
139
140 return com.liferay.portlet.messageboards.model.MBThreadSoap.toSoapModel(returnValue);
141 }
142 catch (Exception e) {
143 _log.error(e, e);
144
145 throw new RemoteException(e.getMessage());
146 }
147 }
148
149 public static void unlockThread(long threadId) throws RemoteException {
150 try {
151 MBThreadServiceUtil.unlockThread(threadId);
152 }
153 catch (Exception e) {
154 _log.error(e, e);
155
156 throw new RemoteException(e.getMessage());
157 }
158 }
159
160 private static Log _log = LogFactoryUtil.getLog(MBThreadServiceSoap.class);
161 }