Liferay 6.2-ce-ga5

com.liferay.portlet.dynamicdatalists.service.http
Class DDLRecordSetServiceHttp

java.lang.Object
  extended by com.liferay.portlet.dynamicdatalists.service.http.DDLRecordSetServiceHttp

public class DDLRecordSetServiceHttp
extends Object

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

Constructor Summary
DDLRecordSetServiceHttp()
           
 
Method Summary
static DDLRecordSet addRecordSet(HttpPrincipal httpPrincipal, long groupId, long ddmStructureId, String recordSetKey, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, int scope, ServiceContext serviceContext)
           
static void deleteRecordSet(HttpPrincipal httpPrincipal, long recordSetId)
           
static DDLRecordSet getRecordSet(HttpPrincipal httpPrincipal, long recordSetId)
           
static List<DDLRecordSet> search(HttpPrincipal httpPrincipal, long companyId, long groupId, String keywords, int scope, int start, int end, OrderByComparator orderByComparator)
           
static List<DDLRecordSet> search(HttpPrincipal httpPrincipal, long companyId, long groupId, String name, String description, int scope, boolean andOperator, int start, int end, OrderByComparator orderByComparator)
           
static int searchCount(HttpPrincipal httpPrincipal, long companyId, long groupId, String keywords, int scope)
           
static int searchCount(HttpPrincipal httpPrincipal, long companyId, long groupId, String name, String description, int scope, boolean andOperator)
           
static DDLRecordSet updateMinDisplayRows(HttpPrincipal httpPrincipal, long recordSetId, int minDisplayRows, ServiceContext serviceContext)
           
static DDLRecordSet updateRecordSet(HttpPrincipal httpPrincipal, long recordSetId, long ddmStructureId, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, ServiceContext serviceContext)
           
static DDLRecordSet updateRecordSet(HttpPrincipal httpPrincipal, long groupId, long ddmStructureId, String recordSetKey, Map<Locale,String> nameMap, Map<Locale,String> descriptionMap, int minDisplayRows, ServiceContext serviceContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DDLRecordSetServiceHttp

public DDLRecordSetServiceHttp()
Method Detail

addRecordSet

public static DDLRecordSet addRecordSet(HttpPrincipal httpPrincipal,
                                        long groupId,
                                        long ddmStructureId,
                                        String recordSetKey,
                                        Map<Locale,String> nameMap,
                                        Map<Locale,String> descriptionMap,
                                        int minDisplayRows,
                                        int scope,
                                        ServiceContext serviceContext)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

deleteRecordSet

public static void deleteRecordSet(HttpPrincipal httpPrincipal,
                                   long recordSetId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

getRecordSet

public static DDLRecordSet getRecordSet(HttpPrincipal httpPrincipal,
                                        long recordSetId)
                                 throws PortalException,
                                        SystemException
Throws:
PortalException
SystemException

search

public static List<DDLRecordSet> search(HttpPrincipal httpPrincipal,
                                        long companyId,
                                        long groupId,
                                        String keywords,
                                        int scope,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Throws:
SystemException

search

public static List<DDLRecordSet> search(HttpPrincipal httpPrincipal,
                                        long companyId,
                                        long groupId,
                                        String name,
                                        String description,
                                        int scope,
                                        boolean andOperator,
                                        int start,
                                        int end,
                                        OrderByComparator orderByComparator)
                                 throws SystemException
Throws:
SystemException

searchCount

public static int searchCount(HttpPrincipal httpPrincipal,
                              long companyId,
                              long groupId,
                              String keywords,
                              int scope)
                       throws SystemException
Throws:
SystemException

searchCount

public static int searchCount(HttpPrincipal httpPrincipal,
                              long companyId,
                              long groupId,
                              String name,
                              String description,
                              int scope,
                              boolean andOperator)
                       throws SystemException
Throws:
SystemException

updateMinDisplayRows

public static DDLRecordSet updateMinDisplayRows(HttpPrincipal httpPrincipal,
                                                long recordSetId,
                                                int minDisplayRows,
                                                ServiceContext serviceContext)
                                         throws PortalException,
                                                SystemException
Throws:
PortalException
SystemException

updateRecordSet

public static DDLRecordSet updateRecordSet(HttpPrincipal httpPrincipal,
                                           long recordSetId,
                                           long ddmStructureId,
                                           Map<Locale,String> nameMap,
                                           Map<Locale,String> descriptionMap,
                                           int minDisplayRows,
                                           ServiceContext serviceContext)
                                    throws PortalException,
                                           SystemException
Throws:
PortalException
SystemException

updateRecordSet

public static DDLRecordSet updateRecordSet(HttpPrincipal httpPrincipal,
                                           long groupId,
                                           long ddmStructureId,
                                           String recordSetKey,
                                           Map<Locale,String> nameMap,
                                           Map<Locale,String> descriptionMap,
                                           int minDisplayRows,
                                           ServiceContext serviceContext)
                                    throws PortalException,
                                           SystemException
Throws:
PortalException
SystemException

Liferay 6.2-ce-ga5