/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.opensocial.service; import aQute.bnd.annotation.ProviderType; import com.liferay.portal.kernel.service.InvokableService; /** * @author Brian Wing Shun Chan * @generated */ @ProviderType public class GadgetServiceClp implements GadgetService { public GadgetServiceClp(InvokableService invokableService) { _invokableService = invokableService; _methodName0 = "addGadget"; _methodParameterTypes0 = new String[] { "long", "java.lang.String", "java.lang.String", "com.liferay.portal.kernel.service.ServiceContext" }; _methodName2 = "getOSGiServiceIdentifier"; _methodParameterTypes2 = new String[] { }; _methodName3 = "deleteGadget"; _methodParameterTypes3 = new String[] { "long", "com.liferay.portal.kernel.service.ServiceContext" }; _methodName4 = "updateGadget"; _methodParameterTypes4 = new String[] { "long", "java.lang.String", "com.liferay.portal.kernel.service.ServiceContext" }; } @Override public com.liferay.opensocial.model.Gadget addGadget(long companyId, java.lang.String url, java.lang.String portletCategoryNames, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { Object returnObj = null; try { returnObj = _invokableService.invokeMethod(_methodName0, _methodParameterTypes0, new Object[] { companyId, ClpSerializer.translateInput(url), ClpSerializer.translateInput(portletCategoryNames), ClpSerializer.translateInput(serviceContext) }); } catch (Throwable t) { t = ClpSerializer.translateThrowable(t); if (t instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)t; } if (t instanceof RuntimeException) { throw (RuntimeException)t; } else { throw new RuntimeException(t.getClass().getName() + " is not a valid exception"); } } return (com.liferay.opensocial.model.Gadget)ClpSerializer.translateOutput(returnObj); } @Override public java.lang.Object invokeMethod(java.lang.String name, java.lang.String[] parameterTypes, java.lang.Object[] arguments) throws java.lang.Throwable { throw new UnsupportedOperationException(); } @Override public java.lang.String getOSGiServiceIdentifier() { Object returnObj = null; try { returnObj = _invokableService.invokeMethod(_methodName2, _methodParameterTypes2, new Object[] { }); } catch (Throwable t) { t = ClpSerializer.translateThrowable(t); if (t instanceof RuntimeException) { throw (RuntimeException)t; } else { throw new RuntimeException(t.getClass().getName() + " is not a valid exception"); } } return (java.lang.String)ClpSerializer.translateOutput(returnObj); } @Override public void deleteGadget(long gadgetId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { try { _invokableService.invokeMethod(_methodName3, _methodParameterTypes3, new Object[] { gadgetId, ClpSerializer.translateInput(serviceContext) }); } catch (Throwable t) { t = ClpSerializer.translateThrowable(t); if (t instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)t; } if (t instanceof RuntimeException) { throw (RuntimeException)t; } else { throw new RuntimeException(t.getClass().getName() + " is not a valid exception"); } } } @Override public void updateGadget(long gadgetId, java.lang.String portletCategoryNames, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException { try { _invokableService.invokeMethod(_methodName4, _methodParameterTypes4, new Object[] { gadgetId, ClpSerializer.translateInput(portletCategoryNames), ClpSerializer.translateInput(serviceContext) }); } catch (Throwable t) { t = ClpSerializer.translateThrowable(t); if (t instanceof com.liferay.portal.kernel.exception.PortalException) { throw (com.liferay.portal.kernel.exception.PortalException)t; } if (t instanceof RuntimeException) { throw (RuntimeException)t; } else { throw new RuntimeException(t.getClass().getName() + " is not a valid exception"); } } } private InvokableService _invokableService; private String _methodName0; private String[] _methodParameterTypes0; private String _methodName2; private String[] _methodParameterTypes2; private String _methodName3; private String[] _methodParameterTypes3; private String _methodName4; private String[] _methodParameterTypes4; }