Liferay 6.1.2-ce-ga3

com.liferay.portal.service
Interface ListTypeService

All Superinterfaces:
BaseService
All Known Implementing Classes:
ListTypeServiceWrapper

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

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
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 ListType getListType(int listTypeId)
           
 List<ListType> getListTypes(String type)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void validate(int listTypeId, long classNameId, String type)
           
 void validate(int listTypeId, String type)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

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.2-ce-ga3