/portlets/webex-portlet/docroot/WEB-INF/service/com/liferay/meeting/webex/service/WebExSiteServiceClp.java

http://github.com/liferay/liferay-plugins · Java · 346 lines · 260 code · 69 blank · 17 comment · 21 complexity · daa0af8cdc6bbdea7bfe4173327b6d65 MD5 · raw file

  1. /**
  2. * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
  3. *
  4. * This library is free software; you can redistribute it and/or modify it under
  5. * the terms of the GNU Lesser General Public License as published by the Free
  6. * Software Foundation; either version 2.1 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
  12. * details.
  13. */
  14. package com.liferay.meeting.webex.service;
  15. import aQute.bnd.annotation.ProviderType;
  16. import com.liferay.portal.kernel.service.InvokableService;
  17. /**
  18. * @author Anant Singh
  19. * @generated
  20. */
  21. @ProviderType
  22. public class WebExSiteServiceClp implements WebExSiteService {
  23. public WebExSiteServiceClp(InvokableService invokableService) {
  24. _invokableService = invokableService;
  25. _methodName0 = "deleteWebExSite";
  26. _methodParameterTypes0 = new String[] { "long" };
  27. _methodName1 = "fetchSiteKeyWebExSite";
  28. _methodParameterTypes1 = new String[] { "long" };
  29. _methodName2 = "getWebExSite";
  30. _methodParameterTypes2 = new String[] { "long" };
  31. _methodName3 = "getWebExSitesCount";
  32. _methodParameterTypes3 = new String[] { "long" };
  33. _methodName5 = "getOSGiServiceIdentifier";
  34. _methodParameterTypes5 = new String[] { };
  35. _methodName6 = "getWebExSites";
  36. _methodParameterTypes6 = new String[] {
  37. "long", "int", "int",
  38. "com.liferay.portal.kernel.util.OrderByComparator"
  39. };
  40. _methodName7 = "addWebExSite";
  41. _methodParameterTypes7 = new String[] {
  42. "long", "java.lang.String", "java.lang.String",
  43. "java.lang.String", "java.lang.String", "java.lang.String",
  44. "long", "com.liferay.portal.kernel.service.ServiceContext"
  45. };
  46. _methodName8 = "updateWebExSite";
  47. _methodParameterTypes8 = new String[] {
  48. "long", "java.lang.String", "java.lang.String",
  49. "java.lang.String",
  50. "com.liferay.portal.kernel.service.ServiceContext"
  51. };
  52. }
  53. @Override
  54. public com.liferay.meeting.webex.model.WebExSite deleteWebExSite(
  55. long webExSiteId)
  56. throws com.liferay.portal.kernel.exception.PortalException {
  57. Object returnObj = null;
  58. try {
  59. returnObj = _invokableService.invokeMethod(_methodName0,
  60. _methodParameterTypes0, new Object[] { webExSiteId });
  61. }
  62. catch (Throwable t) {
  63. t = ClpSerializer.translateThrowable(t);
  64. if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
  65. throw (com.liferay.portal.kernel.exception.PortalException)t;
  66. }
  67. if (t instanceof RuntimeException) {
  68. throw (RuntimeException)t;
  69. }
  70. else {
  71. throw new RuntimeException(t.getClass().getName() +
  72. " is not a valid exception");
  73. }
  74. }
  75. return (com.liferay.meeting.webex.model.WebExSite)ClpSerializer.translateOutput(returnObj);
  76. }
  77. @Override
  78. public com.liferay.meeting.webex.model.WebExSite fetchSiteKeyWebExSite(
  79. long siteKey)
  80. throws com.liferay.portal.kernel.exception.PortalException {
  81. Object returnObj = null;
  82. try {
  83. returnObj = _invokableService.invokeMethod(_methodName1,
  84. _methodParameterTypes1, new Object[] { siteKey });
  85. }
  86. catch (Throwable t) {
  87. t = ClpSerializer.translateThrowable(t);
  88. if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
  89. throw (com.liferay.portal.kernel.exception.PortalException)t;
  90. }
  91. if (t instanceof RuntimeException) {
  92. throw (RuntimeException)t;
  93. }
  94. else {
  95. throw new RuntimeException(t.getClass().getName() +
  96. " is not a valid exception");
  97. }
  98. }
  99. return (com.liferay.meeting.webex.model.WebExSite)ClpSerializer.translateOutput(returnObj);
  100. }
  101. @Override
  102. public com.liferay.meeting.webex.model.WebExSite getWebExSite(
  103. long webExSiteId)
  104. throws com.liferay.portal.kernel.exception.PortalException {
  105. Object returnObj = null;
  106. try {
  107. returnObj = _invokableService.invokeMethod(_methodName2,
  108. _methodParameterTypes2, new Object[] { webExSiteId });
  109. }
  110. catch (Throwable t) {
  111. t = ClpSerializer.translateThrowable(t);
  112. if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
  113. throw (com.liferay.portal.kernel.exception.PortalException)t;
  114. }
  115. if (t instanceof RuntimeException) {
  116. throw (RuntimeException)t;
  117. }
  118. else {
  119. throw new RuntimeException(t.getClass().getName() +
  120. " is not a valid exception");
  121. }
  122. }
  123. return (com.liferay.meeting.webex.model.WebExSite)ClpSerializer.translateOutput(returnObj);
  124. }
  125. @Override
  126. public int getWebExSitesCount(long groupId) {
  127. Object returnObj = null;
  128. try {
  129. returnObj = _invokableService.invokeMethod(_methodName3,
  130. _methodParameterTypes3, new Object[] { groupId });
  131. }
  132. catch (Throwable t) {
  133. t = ClpSerializer.translateThrowable(t);
  134. if (t instanceof RuntimeException) {
  135. throw (RuntimeException)t;
  136. }
  137. else {
  138. throw new RuntimeException(t.getClass().getName() +
  139. " is not a valid exception");
  140. }
  141. }
  142. return ((Integer)returnObj).intValue();
  143. }
  144. @Override
  145. public java.lang.Object invokeMethod(java.lang.String name,
  146. java.lang.String[] parameterTypes, java.lang.Object[] arguments)
  147. throws java.lang.Throwable {
  148. throw new UnsupportedOperationException();
  149. }
  150. @Override
  151. public java.lang.String getOSGiServiceIdentifier() {
  152. Object returnObj = null;
  153. try {
  154. returnObj = _invokableService.invokeMethod(_methodName5,
  155. _methodParameterTypes5, new Object[] { });
  156. }
  157. catch (Throwable t) {
  158. t = ClpSerializer.translateThrowable(t);
  159. if (t instanceof RuntimeException) {
  160. throw (RuntimeException)t;
  161. }
  162. else {
  163. throw new RuntimeException(t.getClass().getName() +
  164. " is not a valid exception");
  165. }
  166. }
  167. return (java.lang.String)ClpSerializer.translateOutput(returnObj);
  168. }
  169. @Override
  170. public java.util.List<com.liferay.meeting.webex.model.WebExSite> getWebExSites(
  171. long groupId, int start, int end,
  172. com.liferay.portal.kernel.util.OrderByComparator obc) {
  173. Object returnObj = null;
  174. try {
  175. returnObj = _invokableService.invokeMethod(_methodName6,
  176. _methodParameterTypes6,
  177. new Object[] {
  178. groupId,
  179. start,
  180. end,
  181. ClpSerializer.translateInput(obc)
  182. });
  183. }
  184. catch (Throwable t) {
  185. t = ClpSerializer.translateThrowable(t);
  186. if (t instanceof RuntimeException) {
  187. throw (RuntimeException)t;
  188. }
  189. else {
  190. throw new RuntimeException(t.getClass().getName() +
  191. " is not a valid exception");
  192. }
  193. }
  194. return (java.util.List<com.liferay.meeting.webex.model.WebExSite>)ClpSerializer.translateOutput(returnObj);
  195. }
  196. @Override
  197. public void addWebExSite(long groupId, java.lang.String name,
  198. java.lang.String apiURL, java.lang.String login,
  199. java.lang.String password, java.lang.String partnerKey, long siteKey,
  200. com.liferay.portal.kernel.service.ServiceContext serviceContext)
  201. throws com.liferay.portal.kernel.exception.PortalException {
  202. try {
  203. _invokableService.invokeMethod(_methodName7,
  204. _methodParameterTypes7,
  205. new Object[] {
  206. groupId,
  207. ClpSerializer.translateInput(name),
  208. ClpSerializer.translateInput(apiURL),
  209. ClpSerializer.translateInput(login),
  210. ClpSerializer.translateInput(password),
  211. ClpSerializer.translateInput(partnerKey),
  212. siteKey,
  213. ClpSerializer.translateInput(serviceContext)
  214. });
  215. }
  216. catch (Throwable t) {
  217. t = ClpSerializer.translateThrowable(t);
  218. if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
  219. throw (com.liferay.portal.kernel.exception.PortalException)t;
  220. }
  221. if (t instanceof RuntimeException) {
  222. throw (RuntimeException)t;
  223. }
  224. else {
  225. throw new RuntimeException(t.getClass().getName() +
  226. " is not a valid exception");
  227. }
  228. }
  229. }
  230. @Override
  231. public void updateWebExSite(long webExSiteId, java.lang.String apiURL,
  232. java.lang.String login, java.lang.String password,
  233. com.liferay.portal.kernel.service.ServiceContext serviceContext)
  234. throws com.liferay.portal.kernel.exception.PortalException {
  235. try {
  236. _invokableService.invokeMethod(_methodName8,
  237. _methodParameterTypes8,
  238. new Object[] {
  239. webExSiteId,
  240. ClpSerializer.translateInput(apiURL),
  241. ClpSerializer.translateInput(login),
  242. ClpSerializer.translateInput(password),
  243. ClpSerializer.translateInput(serviceContext)
  244. });
  245. }
  246. catch (Throwable t) {
  247. t = ClpSerializer.translateThrowable(t);
  248. if (t instanceof com.liferay.portal.kernel.exception.PortalException) {
  249. throw (com.liferay.portal.kernel.exception.PortalException)t;
  250. }
  251. if (t instanceof RuntimeException) {
  252. throw (RuntimeException)t;
  253. }
  254. else {
  255. throw new RuntimeException(t.getClass().getName() +
  256. " is not a valid exception");
  257. }
  258. }
  259. }
  260. private InvokableService _invokableService;
  261. private String _methodName0;
  262. private String[] _methodParameterTypes0;
  263. private String _methodName1;
  264. private String[] _methodParameterTypes1;
  265. private String _methodName2;
  266. private String[] _methodParameterTypes2;
  267. private String _methodName3;
  268. private String[] _methodParameterTypes3;
  269. private String _methodName5;
  270. private String[] _methodParameterTypes5;
  271. private String _methodName6;
  272. private String[] _methodParameterTypes6;
  273. private String _methodName7;
  274. private String[] _methodParameterTypes7;
  275. private String _methodName8;
  276. private String[] _methodParameterTypes8;
  277. }