|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portal.service.LayoutBranchLocalServiceWrapper
public class LayoutBranchLocalServiceWrapper
This class is a wrapper for LayoutBranchLocalService
.
LayoutBranchLocalService
Constructor Summary | |
---|---|
LayoutBranchLocalServiceWrapper(LayoutBranchLocalService layoutBranchLocalService)
|
Method Summary | |
---|---|
LayoutBranch |
addLayoutBranch(LayoutBranch layoutBranch)
Adds the layout branch to the database. |
LayoutBranch |
addLayoutBranch(long layoutSetBranchId,
long plid,
String name,
String description,
boolean master,
ServiceContext serviceContext)
|
LayoutBranch |
addLayoutBranch(long layoutRevisionId,
String name,
String description,
boolean master,
ServiceContext serviceContext)
|
LayoutBranch |
createLayoutBranch(long LayoutBranchId)
Creates a new layout branch with the primary key. |
LayoutBranch |
deleteLayoutBranch(LayoutBranch layoutBranch)
Deletes the layout branch from the database. |
LayoutBranch |
deleteLayoutBranch(long LayoutBranchId)
Deletes the layout branch with the primary key from the database. |
void |
deleteLayoutSetBranchLayoutBranches(long layoutSetBranchId)
|
DynamicQuery |
dynamicQuery()
|
List |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows. |
List |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows. |
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows that match the dynamic query. |
LayoutBranch |
fetchLayoutBranch(long LayoutBranchId)
|
String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
LayoutBranch |
getLayoutBranch(long LayoutBranchId)
Returns the layout branch with the primary key. |
List<LayoutBranch> |
getLayoutBranches(long layoutSetBranchId,
long plid,
int start,
int end,
OrderByComparator orderByComparator)
|
List<LayoutBranch> |
getLayoutBranchs(int start,
int end)
Returns a range of all the layout branchs. |
int |
getLayoutBranchsCount()
Returns the number of layout branchs. |
List<LayoutBranch> |
getLayoutSetBranchLayoutBranches(long layoutSetBranchId)
|
LayoutBranch |
getMasterLayoutBranch(long layoutSetBranchId,
long plid)
|
LayoutBranch |
getMasterLayoutBranch(long layoutSetBranchId,
long plid,
ServiceContext serviceContext)
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
|
LayoutBranchLocalService |
getWrappedLayoutBranchLocalService()
Deprecated. Renamed to getWrappedService() |
LayoutBranchLocalService |
getWrappedService()
|
void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
void |
setWrappedLayoutBranchLocalService(LayoutBranchLocalService layoutBranchLocalService)
Deprecated. Renamed to setWrappedService(com.liferay.portal.service.LayoutBranchLocalService) |
void |
setWrappedService(LayoutBranchLocalService layoutBranchLocalService)
|
LayoutBranch |
updateLayoutBranch(LayoutBranch layoutBranch)
Updates the layout branch in the database or adds it if it does not yet exist. |
LayoutBranch |
updateLayoutBranch(LayoutBranch layoutBranch,
boolean merge)
Updates the layout branch in the database or adds it if it does not yet exist. |
LayoutBranch |
updateLayoutBranch(long layoutBranchId,
String name,
String description,
ServiceContext serviceContext)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public LayoutBranchLocalServiceWrapper(LayoutBranchLocalService layoutBranchLocalService)
Method Detail |
---|
public LayoutBranch addLayoutBranch(LayoutBranch layoutBranch) throws SystemException
addLayoutBranch
in interface LayoutBranchLocalService
layoutBranch
- the layout branch
SystemException
- if a system exception occurredpublic LayoutBranch createLayoutBranch(long LayoutBranchId)
createLayoutBranch
in interface LayoutBranchLocalService
LayoutBranchId
- the primary key for the new layout branch
public LayoutBranch deleteLayoutBranch(long LayoutBranchId) throws PortalException, SystemException
deleteLayoutBranch
in interface LayoutBranchLocalService
LayoutBranchId
- the primary key of the layout branch
PortalException
- if a layout branch with the primary key could not be found
SystemException
- if a system exception occurredpublic LayoutBranch deleteLayoutBranch(LayoutBranch layoutBranch) throws SystemException
deleteLayoutBranch
in interface LayoutBranchLocalService
layoutBranch
- the layout branch
SystemException
- if a system exception occurredpublic DynamicQuery dynamicQuery()
dynamicQuery
in interface LayoutBranchLocalService
public List dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
in interface LayoutBranchLocalService
dynamicQuery
- the dynamic query
SystemException
- if a system exception occurredpublic List dynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
dynamicQuery
in interface LayoutBranchLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)
SystemException
- if a system exception occurredpublic List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
dynamicQuery
in interface LayoutBranchLocalService
dynamicQuery
- the dynamic querystart
- the lower bound of the range of model instancesend
- the upper bound of the range of model instances (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic long dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQueryCount
in interface LayoutBranchLocalService
dynamicQuery
- the dynamic query
SystemException
- if a system exception occurredpublic LayoutBranch fetchLayoutBranch(long LayoutBranchId) throws SystemException
fetchLayoutBranch
in interface LayoutBranchLocalService
SystemException
public LayoutBranch getLayoutBranch(long LayoutBranchId) throws PortalException, SystemException
getLayoutBranch
in interface LayoutBranchLocalService
LayoutBranchId
- the primary key of the layout branch
PortalException
- if a layout branch with the primary key could not be found
SystemException
- if a system exception occurredpublic PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException, SystemException
getPersistedModel
in interface LayoutBranchLocalService
getPersistedModel
in interface PersistedModelLocalService
PortalException
SystemException
public List<LayoutBranch> getLayoutBranchs(int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil.ALL_POS
will return the full result set.
getLayoutBranchs
in interface LayoutBranchLocalService
start
- the lower bound of the range of layout branchsend
- the upper bound of the range of layout branchs (not inclusive)
SystemException
- if a system exception occurredpublic int getLayoutBranchsCount() throws SystemException
getLayoutBranchsCount
in interface LayoutBranchLocalService
SystemException
- if a system exception occurredpublic LayoutBranch updateLayoutBranch(LayoutBranch layoutBranch) throws SystemException
updateLayoutBranch
in interface LayoutBranchLocalService
layoutBranch
- the layout branch
SystemException
- if a system exception occurredpublic LayoutBranch updateLayoutBranch(LayoutBranch layoutBranch, boolean merge) throws SystemException
updateLayoutBranch
in interface LayoutBranchLocalService
layoutBranch
- the layout branchmerge
- whether to merge the layout branch with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)
for an explanation.
SystemException
- if a system exception occurredpublic String getBeanIdentifier()
getBeanIdentifier
in interface LayoutBranchLocalService
public void setBeanIdentifier(String beanIdentifier)
setBeanIdentifier
in interface LayoutBranchLocalService
beanIdentifier
- the Spring bean ID for this beanpublic LayoutBranch addLayoutBranch(long layoutSetBranchId, long plid, String name, String description, boolean master, ServiceContext serviceContext) throws PortalException, SystemException
addLayoutBranch
in interface LayoutBranchLocalService
PortalException
SystemException
public LayoutBranch addLayoutBranch(long layoutRevisionId, String name, String description, boolean master, ServiceContext serviceContext) throws PortalException, SystemException
addLayoutBranch
in interface LayoutBranchLocalService
PortalException
SystemException
public void deleteLayoutSetBranchLayoutBranches(long layoutSetBranchId) throws PortalException, SystemException
deleteLayoutSetBranchLayoutBranches
in interface LayoutBranchLocalService
PortalException
SystemException
public List<LayoutBranch> getLayoutBranches(long layoutSetBranchId, long plid, int start, int end, OrderByComparator orderByComparator) throws SystemException
getLayoutBranches
in interface LayoutBranchLocalService
SystemException
public List<LayoutBranch> getLayoutSetBranchLayoutBranches(long layoutSetBranchId) throws SystemException
getLayoutSetBranchLayoutBranches
in interface LayoutBranchLocalService
SystemException
public LayoutBranch getMasterLayoutBranch(long layoutSetBranchId, long plid) throws PortalException, SystemException
getMasterLayoutBranch
in interface LayoutBranchLocalService
PortalException
SystemException
public LayoutBranch getMasterLayoutBranch(long layoutSetBranchId, long plid, ServiceContext serviceContext) throws PortalException, SystemException
getMasterLayoutBranch
in interface LayoutBranchLocalService
PortalException
SystemException
public LayoutBranch updateLayoutBranch(long layoutBranchId, String name, String description, ServiceContext serviceContext) throws PortalException, SystemException
updateLayoutBranch
in interface LayoutBranchLocalService
PortalException
SystemException
public LayoutBranchLocalService getWrappedLayoutBranchLocalService()
getWrappedService()
public void setWrappedLayoutBranchLocalService(LayoutBranchLocalService layoutBranchLocalService)
setWrappedService(com.liferay.portal.service.LayoutBranchLocalService)
public LayoutBranchLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<LayoutBranchLocalService>
public void setWrappedService(LayoutBranchLocalService layoutBranchLocalService)
setWrappedService
in interface ServiceWrapper<LayoutBranchLocalService>
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |