001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portal.service.http;
022:
023: import com.liferay.portal.service.OrgLaborServiceUtil;
024:
025: import org.json.JSONArray;
026: import org.json.JSONObject;
027:
028: /**
029: * <a href="OrgLaborServiceJSON.java.html"><b><i>View Source</i></b></a>
030: *
031: * <p>
032: * ServiceBuilder generated this class. Modifications in this class will be
033: * overwritten the next time is generated.
034: * </p>
035: *
036: * <p>
037: * This class provides a JSON utility for the
038: * <code>com.liferay.portal.service.OrgLaborServiceUtil</code>
039: * service utility. The static methods of this class calls the same methods of
040: * the service utility. However, the signatures are different because it is
041: * difficult for JSON to support certain types.
042: * </p>
043: *
044: * <p>
045: * ServiceBuilder follows certain rules in translating the methods. For example,
046: * if the method in the service utility returns a <code>java.util.List</code>,
047: * that is translated to a <code>org.json.JSONArray</code>. If the method in the
048: * service utility returns a <code>com.liferay.portal.model.OrgLabor</code>,
049: * that is translated to a <code>org.json.JSONObject</code>. Methods that JSON
050: * cannot safely use are skipped. The logic for the translation is encapsulated
051: * in <code>com.liferay.portal.service.http.OrgLaborJSONSerializer</code>.
052: * </p>
053: *
054: * <p>
055: * This allows you to call the the backend services directly from JavaScript.
056: * See <code>portal-web/docroot/html/portlet/tags_admin/unpacked.js</code> for a
057: * reference of how that portlet uses the generated JavaScript in
058: * <code>portal-web/docroot/html/js/service.js</code> to call the backend
059: * services directly from JavaScript.
060: * </p>
061: *
062: * <p>
063: * The JSON utility is only generated for remote services.
064: * </p>
065: *
066: * @author Brian Wing Shun Chan
067: *
068: * @see com.liferay.portal.service.OrgLaborServiceUtil
069: * @see com.liferay.portal.service.http.OrgLaborJSONSerializer
070: *
071: */
072: public class OrgLaborServiceJSON {
073: public static JSONObject addOrgLabor(long organizationId,
074: int typeId, int sunOpen, int sunClose, int monOpen,
075: int monClose, int tueOpen, int tueClose, int wedOpen,
076: int wedClose, int thuOpen, int thuClose, int friOpen,
077: int friClose, int satOpen, int satClose)
078: throws java.rmi.RemoteException,
079: com.liferay.portal.SystemException,
080: com.liferay.portal.PortalException {
081: com.liferay.portal.model.OrgLabor returnValue = OrgLaborServiceUtil
082: .addOrgLabor(organizationId, typeId, sunOpen, sunClose,
083: monOpen, monClose, tueOpen, tueClose, wedOpen,
084: wedClose, thuOpen, thuClose, friOpen, friClose,
085: satOpen, satClose);
086:
087: return OrgLaborJSONSerializer.toJSONObject(returnValue);
088: }
089:
090: public static void deleteOrgLabor(long orgLaborId)
091: throws java.rmi.RemoteException,
092: com.liferay.portal.SystemException,
093: com.liferay.portal.PortalException {
094: OrgLaborServiceUtil.deleteOrgLabor(orgLaborId);
095: }
096:
097: public static JSONObject getOrgLabor(long orgLaborId)
098: throws java.rmi.RemoteException,
099: com.liferay.portal.SystemException,
100: com.liferay.portal.PortalException {
101: com.liferay.portal.model.OrgLabor returnValue = OrgLaborServiceUtil
102: .getOrgLabor(orgLaborId);
103:
104: return OrgLaborJSONSerializer.toJSONObject(returnValue);
105: }
106:
107: public static JSONArray getOrgLabors(long organizationId)
108: throws java.rmi.RemoteException,
109: com.liferay.portal.SystemException,
110: com.liferay.portal.PortalException {
111: java.util.List returnValue = OrgLaborServiceUtil
112: .getOrgLabors(organizationId);
113:
114: return OrgLaborJSONSerializer.toJSONArray(returnValue);
115: }
116:
117: public static JSONObject updateOrgLabor(long orgLaborId,
118: int sunOpen, int sunClose, int monOpen, int monClose,
119: int tueOpen, int tueClose, int wedOpen, int wedClose,
120: int thuOpen, int thuClose, int friOpen, int friClose,
121: int satOpen, int satClose) throws java.rmi.RemoteException,
122: com.liferay.portal.SystemException,
123: com.liferay.portal.PortalException {
124: com.liferay.portal.model.OrgLabor returnValue = OrgLaborServiceUtil
125: .updateOrgLabor(orgLaborId, sunOpen, sunClose, monOpen,
126: monClose, tueOpen, tueClose, wedOpen, wedClose,
127: thuOpen, thuClose, friOpen, friClose, satOpen,
128: satClose);
129:
130: return OrgLaborJSONSerializer.toJSONObject(returnValue);
131: }
132: }
|