Liferay 6.0.5

com.liferay.portal.service
Interface ListTypeService

All Known Implementing Classes:
ListTypeServiceBaseImpl, ListTypeServiceImpl, ListTypeServiceWrapper

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

The interface for the list type remote service.

Never modify or reference this interface directly. Always use ListTypeServiceUtil to access the list type remote service. Add custom service methods to ListTypeServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

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, ListTypeServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

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,
              String type)
              throws PortalException,
                     SystemException
Throws:
PortalException
SystemException

validate

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

Liferay 6.0.5