DLFileEntryServiceJSON.java :  » Portal » liferay-portal-4.4.2 » com » liferay » portlet » documentlibrary » service » http » Java Open Source

Java Open Source » Portal » liferay portal 4.4.2 
liferay portal 4.4.2 » com » liferay » portlet » documentlibrary » service » http » DLFileEntryServiceJSON.java
/**
 * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

package com.liferay.portlet.documentlibrary.service.http;

import com.liferay.portlet.documentlibrary.service.DLFileEntryServiceUtil;

import org.json.JSONObject;

/**
 * <a href="DLFileEntryServiceJSON.java.html"><b><i>View Source</i></b></a>
 *
 * <p>
 * ServiceBuilder generated this class. Modifications in this class will be
 * overwritten the next time is generated.
 * </p>
 *
 * <p>
 * This class provides a JSON utility for the
 * <code>com.liferay.portlet.documentlibrary.service.DLFileEntryServiceUtil</code>
 * service utility. The static methods of this class calls the same methods of
 * the service utility. However, the signatures are different because it is
 * difficult for JSON to support certain types.
 * </p>
 *
 * <p>
 * ServiceBuilder follows certain rules in translating the methods. For example,
 * if the method in the service utility returns a <code>java.util.List</code>,
 * that is translated to a <code>org.json.JSONArray</code>. If the method in the
 * service utility returns a <code>com.liferay.portlet.documentlibrary.model.DLFileEntry</code>,
 * that is translated to a <code>org.json.JSONObject</code>. Methods that JSON
 * cannot safely use are skipped. The logic for the translation is encapsulated
 * in <code>com.liferay.portlet.documentlibrary.service.http.DLFileEntryJSONSerializer</code>.
 * </p>
 *
 * <p>
 * This allows you to call the the backend services directly from JavaScript.
 * See <code>portal-web/docroot/html/portlet/tags_admin/unpacked.js</code> for a
 * reference of how that portlet uses the generated JavaScript in
 * <code>portal-web/docroot/html/js/service.js</code> to call the backend
 * services directly from JavaScript.
 * </p>
 *
 * <p>
 * The JSON utility is only generated for remote services.
 * </p>
 *
 * @author Brian Wing Shun Chan
 *
 * @see com.liferay.portlet.documentlibrary.service.DLFileEntryServiceUtil
 * @see com.liferay.portlet.documentlibrary.service.http.DLFileEntryJSONSerializer
 *
 */
public class DLFileEntryServiceJSON {
  public static JSONObject addFileEntry(long folderId, java.lang.String name,
    java.lang.String title, java.lang.String description,
    java.lang.String[] tagsEntries, java.lang.String extraSettings,
    byte[] byteArray, boolean addCommunityPermissions,
    boolean addGuestPermissions)
    throws java.rmi.RemoteException, com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException {
    com.liferay.portlet.documentlibrary.model.DLFileEntry returnValue = DLFileEntryServiceUtil.addFileEntry(folderId,
        name, title, description, tagsEntries, extraSettings,
        byteArray, addCommunityPermissions, addGuestPermissions);

    return DLFileEntryJSONSerializer.toJSONObject(returnValue);
  }

  public static JSONObject addFileEntry(long folderId, java.lang.String name,
    java.lang.String title, java.lang.String description,
    java.lang.String[] tagsEntries, java.lang.String extraSettings,
    byte[] byteArray, java.lang.String[] communityPermissions,
    java.lang.String[] guestPermissions)
    throws java.rmi.RemoteException, com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException {
    com.liferay.portlet.documentlibrary.model.DLFileEntry returnValue = DLFileEntryServiceUtil.addFileEntry(folderId,
        name, title, description, tagsEntries, extraSettings,
        byteArray, communityPermissions, guestPermissions);

    return DLFileEntryJSONSerializer.toJSONObject(returnValue);
  }

  public static void deleteFileEntry(long folderId, java.lang.String name)
    throws com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException, java.rmi.RemoteException {
    DLFileEntryServiceUtil.deleteFileEntry(folderId, name);
  }

  public static void deleteFileEntry(long folderId, java.lang.String name,
    double version)
    throws com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException, java.rmi.RemoteException {
    DLFileEntryServiceUtil.deleteFileEntry(folderId, name, version);
  }

  public static void deleteFileEntryByTitle(long folderId,
    java.lang.String titleWithExtension)
    throws com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException, java.rmi.RemoteException {
    DLFileEntryServiceUtil.deleteFileEntryByTitle(folderId,
      titleWithExtension);
  }

  public static JSONObject getFileEntry(long folderId, java.lang.String name)
    throws java.rmi.RemoteException, com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException {
    com.liferay.portlet.documentlibrary.model.DLFileEntry returnValue = DLFileEntryServiceUtil.getFileEntry(folderId,
        name);

    return DLFileEntryJSONSerializer.toJSONObject(returnValue);
  }

  public static JSONObject getFileEntryByTitle(long folderId,
    java.lang.String titleWithExtension)
    throws java.rmi.RemoteException, com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException {
    com.liferay.portlet.documentlibrary.model.DLFileEntry returnValue = DLFileEntryServiceUtil.getFileEntryByTitle(folderId,
        titleWithExtension);

    return DLFileEntryJSONSerializer.toJSONObject(returnValue);
  }

  public static void lockFileEntry(long folderId, java.lang.String name)
    throws com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException, java.rmi.RemoteException {
    DLFileEntryServiceUtil.lockFileEntry(folderId, name);
  }

  public static void unlockFileEntry(long folderId, java.lang.String name)
    throws com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException, java.rmi.RemoteException {
    DLFileEntryServiceUtil.unlockFileEntry(folderId, name);
  }

  public static JSONObject updateFileEntry(long folderId, long newFolderId,
    java.lang.String name, java.lang.String sourceFileName,
    java.lang.String title, java.lang.String description,
    java.lang.String[] tagsEntries, java.lang.String extraSettings,
    byte[] byteArray)
    throws com.liferay.portal.SystemException, 
      com.liferay.portal.PortalException, java.rmi.RemoteException {
    com.liferay.portlet.documentlibrary.model.DLFileEntry returnValue = DLFileEntryServiceUtil.updateFileEntry(folderId,
        newFolderId, name, sourceFileName, title, description,
        tagsEntries, extraSettings, byteArray);

    return DLFileEntryJSONSerializer.toJSONObject(returnValue);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.