Liferay 6.0.5

com.liferay.portal.service
Interface ClassNameService

All Known Implementing Classes:
ClassNameServiceBaseImpl, ClassNameServiceImpl, ClassNameServiceWrapper

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

The interface for the class name remote service.

Never modify or reference this interface directly. Always use ClassNameServiceUtil to access the class name remote service. Add custom service methods to ClassNameServiceImpl 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:
ClassNameServiceUtil, ClassNameServiceBaseImpl, ClassNameServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 ClassName getClassName(long classNameId)
           
 ClassName getClassName(String value)
           
 long getClassNameId(Class<?> classObj)
           
 long getClassNameId(String value)
           
 

Method Detail

getClassName

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ClassName getClassName(long classNameId)
                       throws PortalException,
                              SystemException
Throws:
PortalException
SystemException

getClassName

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ClassName getClassName(String value)
                       throws SystemException
Throws:
SystemException

getClassNameId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
long getClassNameId(Class<?> classObj)

getClassNameId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
long getClassNameId(String value)

Liferay 6.0.5