Liferay 6.0.5

com.liferay.portlet.asset.service.http
Class AssetEntryServiceHttp

java.lang.Object
  extended by com.liferay.portlet.asset.service.http.AssetEntryServiceHttp

public class AssetEntryServiceHttp
extends Object

This class provides a HTTP utility for the AssetEntryServiceUtil service utility. The static methods of this class calls the same methods of the service utility. However, the signatures are different because it requires an additional HttpPrincipal parameter.

The benefits of using the HTTP utility is that it is fast and allows for tunneling without the cost of serializing to text. The drawback is that it only works with Java.

Set the property tunnel.servlet.hosts.allowed in portal.properties to configure security.

The HTTP utility is only generated for remote services.

See Also:
AssetEntryServiceSoap, HttpPrincipal, AssetEntryServiceUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
AssetEntryServiceHttp()
           
 
Method Summary
static void deleteEntry(HttpPrincipal httpPrincipal, long entryId)
           
static List<AssetEntry> getCompanyEntries(HttpPrincipal httpPrincipal, long companyId, int start, int end)
           
static int getCompanyEntriesCount(HttpPrincipal httpPrincipal, long companyId)
           
static String getCompanyEntriesRSS(HttpPrincipal httpPrincipal, long companyId, int max, String type, double version, String displayStyle, String feedURL, String tagURL)
           
static AssetEntryDisplay[] getCompanyEntryDisplays(HttpPrincipal httpPrincipal, long companyId, int start, int end, String languageId)
           
static List<AssetEntry> getEntries(HttpPrincipal httpPrincipal, AssetEntryQuery entryQuery)
           
static int getEntriesCount(HttpPrincipal httpPrincipal, AssetEntryQuery entryQuery)
           
static String getEntriesRSS(HttpPrincipal httpPrincipal, AssetEntryQuery entryQuery, String name, String type, double version, String displayStyle, String feedURL, String tagURL)
           
static AssetEntry getEntry(HttpPrincipal httpPrincipal, long entryId)
           
static void incrementViewCounter(HttpPrincipal httpPrincipal, String className, long classPK)
           
static AssetEntryDisplay[] searchEntryDisplays(HttpPrincipal httpPrincipal, long companyId, String portletId, String keywords, String languageId, int start, int end)
           
static int searchEntryDisplaysCount(HttpPrincipal httpPrincipal, long companyId, String portletId, String keywords, String languageId)
           
static AssetEntry updateEntry(HttpPrincipal httpPrincipal, long groupId, String className, long classPK, String classUuid, long[] categoryIds, String[] tagNames, boolean visible, Date startDate, Date endDate, Date publishDate, Date expirationDate, String mimeType, String title, String description, String summary, String url, int height, int width, Integer priority, boolean sync)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AssetEntryServiceHttp

public AssetEntryServiceHttp()
Method Detail

deleteEntry

public static void deleteEntry(HttpPrincipal httpPrincipal,
                               long entryId)
                        throws PortalException,
                               SystemException
Throws:
PortalException
SystemException

getCompanyEntries

public static List<AssetEntry> getCompanyEntries(HttpPrincipal httpPrincipal,
                                                 long companyId,
                                                 int start,
                                                 int end)
                                          throws SystemException
Throws:
SystemException

getCompanyEntriesCount

public static int getCompanyEntriesCount(HttpPrincipal httpPrincipal,
                                         long companyId)
                                  throws SystemException
Throws:
SystemException

getCompanyEntriesRSS

public static String getCompanyEntriesRSS(HttpPrincipal httpPrincipal,
                                          long companyId,
                                          int max,
                                          String type,
                                          double version,
                                          String displayStyle,
                                          String feedURL,
                                          String tagURL)
                                   throws PortalException,
                                          SystemException
Throws:
PortalException
SystemException

getCompanyEntryDisplays

public static AssetEntryDisplay[] getCompanyEntryDisplays(HttpPrincipal httpPrincipal,
                                                          long companyId,
                                                          int start,
                                                          int end,
                                                          String languageId)
                                                   throws SystemException
Throws:
SystemException

getEntries

public static List<AssetEntry> getEntries(HttpPrincipal httpPrincipal,
                                          AssetEntryQuery entryQuery)
                                   throws PortalException,
                                          SystemException
Throws:
PortalException
SystemException

getEntriesCount

public static int getEntriesCount(HttpPrincipal httpPrincipal,
                                  AssetEntryQuery entryQuery)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

getEntriesRSS

public static String getEntriesRSS(HttpPrincipal httpPrincipal,
                                   AssetEntryQuery entryQuery,
                                   String name,
                                   String type,
                                   double version,
                                   String displayStyle,
                                   String feedURL,
                                   String tagURL)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

getEntry

public static AssetEntry getEntry(HttpPrincipal httpPrincipal,
                                  long entryId)
                           throws PortalException,
                                  SystemException
Throws:
PortalException
SystemException

incrementViewCounter

public static void incrementViewCounter(HttpPrincipal httpPrincipal,
                                        String className,
                                        long classPK)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

searchEntryDisplays

public static AssetEntryDisplay[] searchEntryDisplays(HttpPrincipal httpPrincipal,
                                                      long companyId,
                                                      String portletId,
                                                      String keywords,
                                                      String languageId,
                                                      int start,
                                                      int end)
                                               throws SystemException
Throws:
SystemException

searchEntryDisplaysCount

public static int searchEntryDisplaysCount(HttpPrincipal httpPrincipal,
                                           long companyId,
                                           String portletId,
                                           String keywords,
                                           String languageId)
                                    throws SystemException
Throws:
SystemException

updateEntry

public static AssetEntry updateEntry(HttpPrincipal httpPrincipal,
                                     long groupId,
                                     String className,
                                     long classPK,
                                     String classUuid,
                                     long[] categoryIds,
                                     String[] tagNames,
                                     boolean visible,
                                     Date startDate,
                                     Date endDate,
                                     Date publishDate,
                                     Date expirationDate,
                                     String mimeType,
                                     String title,
                                     String description,
                                     String summary,
                                     String url,
                                     int height,
                                     int width,
                                     Integer priority,
                                     boolean sync)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

Liferay 6.0.5