com.liferay.portlet.expando.service
Interface ExpandoColumnService
- All Known Implementing Classes:
- ExpandoColumnServiceBaseImpl, ExpandoColumnServiceImpl, ExpandoColumnServiceWrapper
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface ExpandoColumnService
The interface for the expando column remote service.
Never modify or reference this interface directly. Always use ExpandoColumnServiceUtil
to access the expando column remote service. Add custom service methods to ExpandoColumnServiceImpl
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:
ExpandoColumnServiceUtil
,
ExpandoColumnServiceBaseImpl
,
ExpandoColumnServiceImpl
- ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.
Method Summary |
ExpandoColumn |
addColumn(long tableId,
String name,
int type)
|
ExpandoColumn |
addColumn(long tableId,
String name,
int type,
Object defaultData)
|
void |
deleteColumn(long columnId)
|
ExpandoColumn |
updateColumn(long columnId,
String name,
int type)
|
ExpandoColumn |
updateColumn(long columnId,
String name,
int type,
Object defaultData)
|
ExpandoColumn |
updateTypeSettings(long columnId,
String typeSettings)
|
addColumn
ExpandoColumn addColumn(long tableId,
String name,
int type)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
addColumn
ExpandoColumn addColumn(long tableId,
String name,
int type,
Object defaultData)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
deleteColumn
void deleteColumn(long columnId)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
updateColumn
ExpandoColumn updateColumn(long columnId,
String name,
int type)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
updateColumn
ExpandoColumn updateColumn(long columnId,
String name,
int type,
Object defaultData)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
updateTypeSettings
ExpandoColumn updateTypeSettings(long columnId,
String typeSettings)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException