Liferay 6.1.10-ee-ga1

com.liferay.portal.service
Interface ListTypeService

All Known Implementing Classes:
ListTypeServiceWrapper

@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface ListTypeService

The interface for the list type remote service.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
ListTypeServiceUtil, ListTypeServiceBaseImpl, com.liferay.portal.service.impl.ListTypeServiceImpl

Method Summary
 ListType getListType(int listTypeId)
           
 List<ListType> getListTypes(String type)
           
 void validate(int listTypeId, long classNameId, String type)
           
 void validate(int listTypeId, String type)
           
 

Method Detail

getListType

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ListType getListType(int listTypeId)
                     throws PortalException,
                            SystemException
Throws:
PortalException
SystemException

getListTypes

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<ListType> getListTypes(String type)
                            throws SystemException
Throws:
SystemException

validate

void validate(int listTypeId,
              long classNameId,
              String type)
              throws PortalException,
                     SystemException
Throws:
PortalException
SystemException

validate

void validate(int listTypeId,
              String type)
              throws PortalException,
                     SystemException
Throws:
PortalException
SystemException

Liferay 6.1.10-ee-ga1