Liferay 7.0-ce-m6

com.liferay.portal.service
Interface ListTypeService

All Superinterfaces:
BaseService
All Known Implementing Classes:
ListTypeServiceBaseImpl, ListTypeServiceImpl, ListTypeServiceWrapper

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

Provides the remote service interface for ListType. 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 it is generated.

Method Summary
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 ListType getListType(long listTypeId)
           
 List<ListType> getListTypes(String type)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void validate(long listTypeId, long classNameId, String type)
           
 void validate(long listTypeId, String type)
           
 

Method Detail

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

getListType

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

getListTypes

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

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

validate

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

validate

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

Liferay 7.0-ce-m6