Liferay 6.2-ce-ga5

com.liferay.portlet.trash.service.http
Class TrashEntryServiceHttp

java.lang.Object
  extended by com.liferay.portlet.trash.service.http.TrashEntryServiceHttp

public class TrashEntryServiceHttp
extends Object

Provides the HTTP utility for the TrashEntryServiceUtil 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:
TrashEntryServiceSoap, HttpPrincipal, TrashEntryServiceUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
TrashEntryServiceHttp()
           
 
Method Summary
static void deleteEntries(HttpPrincipal httpPrincipal, long groupId)
           
static void deleteEntries(HttpPrincipal httpPrincipal, long[] entryIds)
           
static void deleteEntry(HttpPrincipal httpPrincipal, long entryId)
           
static void deleteEntry(HttpPrincipal httpPrincipal, String className, long classPK)
           
static TrashEntryList getEntries(HttpPrincipal httpPrincipal, long groupId)
           
static TrashEntryList getEntries(HttpPrincipal httpPrincipal, long groupId, int start, int end, OrderByComparator obc)
           
static void moveEntry(HttpPrincipal httpPrincipal, String className, long classPK, long destinationContainerModelId, ServiceContext serviceContext)
           
static TrashEntry restoreEntry(HttpPrincipal httpPrincipal, long entryId)
           
static TrashEntry restoreEntry(HttpPrincipal httpPrincipal, long entryId, long overrideClassPK, String name)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TrashEntryServiceHttp

public TrashEntryServiceHttp()
Method Detail

deleteEntries

public static void deleteEntries(HttpPrincipal httpPrincipal,
                                 long groupId)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

deleteEntries

public static void deleteEntries(HttpPrincipal httpPrincipal,
                                 long[] entryIds)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

deleteEntry

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

deleteEntry

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

getEntries

public static TrashEntryList getEntries(HttpPrincipal httpPrincipal,
                                        long groupId)
                                 throws SystemException,
                                        PrincipalException
Throws:
SystemException
PrincipalException

getEntries

public static TrashEntryList getEntries(HttpPrincipal httpPrincipal,
                                        long groupId,
                                        int start,
                                        int end,
                                        OrderByComparator obc)
                                 throws SystemException,
                                        PrincipalException
Throws:
SystemException
PrincipalException

moveEntry

public static void moveEntry(HttpPrincipal httpPrincipal,
                             String className,
                             long classPK,
                             long destinationContainerModelId,
                             ServiceContext serviceContext)
                      throws PortalException,
                             SystemException
Throws:
PortalException
SystemException

restoreEntry

public static TrashEntry restoreEntry(HttpPrincipal httpPrincipal,
                                      long entryId)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

restoreEntry

public static TrashEntry restoreEntry(HttpPrincipal httpPrincipal,
                                      long entryId,
                                      long overrideClassPK,
                                      String name)
                               throws PortalException,
                                      SystemException
Throws:
PortalException
SystemException

Liferay 6.2-ce-ga5