|
Liferay 6.0.6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portlet.tasks.service.TasksProposalLocalServiceWrapper
public class TasksProposalLocalServiceWrapper
This class is a wrapper for TasksProposalLocalService.
TasksProposalLocalService| Constructor Summary | |
|---|---|
TasksProposalLocalServiceWrapper(TasksProposalLocalService tasksProposalLocalService)
|
|
| Method Summary | |
|---|---|
TasksProposal |
addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
|
TasksProposal |
addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
Boolean addCommunityPermissions,
Boolean addGuestPermissions,
String[] communityPermissions,
String[] guestPermissions)
|
TasksProposal |
addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
String[] communityPermissions,
String[] guestPermissions)
|
void |
addProposalResources(long proposalId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
|
void |
addProposalResources(long proposalId,
String[] communityPermissions,
String[] guestPermissions)
|
void |
addProposalResources(TasksProposal proposal,
boolean addCommunityPermissions,
boolean addGuestPermissions)
|
void |
addProposalResources(TasksProposal proposal,
String[] communityPermissions,
String[] guestPermissions)
|
TasksProposal |
addTasksProposal(TasksProposal tasksProposal)
Adds the tasks proposal to the database. |
TasksProposal |
createTasksProposal(long proposalId)
Creates a new tasks proposal with the primary key. |
void |
deleteProposal(long proposalId)
|
void |
deleteProposal(long classNameId,
String classPK)
|
void |
deleteProposal(String className,
String classPK)
|
void |
deleteProposal(TasksProposal proposal)
|
void |
deleteProposals(long groupId)
|
void |
deleteTasksProposal(long proposalId)
Deletes the tasks proposal with the primary key from the database. |
void |
deleteTasksProposal(TasksProposal tasksProposal)
Deletes the tasks proposal from the database. |
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)
Counts the number of rows that match the dynamic query. |
TasksProposal |
getProposal(long proposalId)
|
TasksProposal |
getProposal(long classNameId,
String classPK)
|
TasksProposal |
getProposal(String className,
String classPK)
|
List<TasksProposal> |
getProposals(long groupId,
int start,
int end)
|
int |
getProposalsCount(long groupId)
|
List<TasksProposal> |
getReviewProposals(long groupId,
long userId,
int start,
int end)
|
int |
getReviewProposalsCount(long groupId,
long userId)
|
TasksProposal |
getTasksProposal(long proposalId)
Gets the tasks proposal with the primary key. |
List<TasksProposal> |
getTasksProposals(int start,
int end)
Gets a range of all the tasks proposals. |
int |
getTasksProposalsCount()
Gets the number of tasks proposals. |
List<TasksProposal> |
getUserProposals(long groupId,
long userId,
int start,
int end)
|
int |
getUserProposalsCount(long groupId,
long userId)
|
TasksProposalLocalService |
getWrappedTasksProposalLocalService()
|
TasksProposal |
updateProposal(long userId,
long proposalId,
String description,
int dueDateMonth,
int dueDateDay,
int dueDateYear,
int dueDateHour,
int dueDateMinute)
|
TasksProposal |
updateTasksProposal(TasksProposal tasksProposal)
Updates the tasks proposal in the database. |
TasksProposal |
updateTasksProposal(TasksProposal tasksProposal,
boolean merge)
Updates the tasks proposal in the database. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public TasksProposalLocalServiceWrapper(TasksProposalLocalService tasksProposalLocalService)
| Method Detail |
|---|
public TasksProposal addTasksProposal(TasksProposal tasksProposal)
throws SystemException
addTasksProposal in interface TasksProposalLocalServicetasksProposal - the tasks proposal to add
SystemException - if a system exception occurredpublic TasksProposal createTasksProposal(long proposalId)
createTasksProposal in interface TasksProposalLocalServiceproposalId - the primary key for the new tasks proposal
public void deleteTasksProposal(long proposalId)
throws PortalException,
SystemException
deleteTasksProposal in interface TasksProposalLocalServiceproposalId - the primary key of the tasks proposal to delete
PortalException - if a tasks proposal with the primary key could not be found
SystemException - if a system exception occurred
public void deleteTasksProposal(TasksProposal tasksProposal)
throws SystemException
deleteTasksProposal in interface TasksProposalLocalServicetasksProposal - the tasks proposal to delete
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery in interface TasksProposalLocalServicedynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
public 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 TasksProposalLocalServicedynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)
SystemException - if a system exception occurred
public 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 TasksProposalLocalServicedynamicQuery - the dynamic query to search withstart - the lower bound of the range of model instances to returnend - the upper bound of the range of model instances to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
public long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQueryCount in interface TasksProposalLocalServicedynamicQuery - the dynamic query to search with
SystemException - if a system exception occurred
public TasksProposal getTasksProposal(long proposalId)
throws PortalException,
SystemException
getTasksProposal in interface TasksProposalLocalServiceproposalId - the primary key of the tasks proposal to get
PortalException - if a tasks proposal with the primary key could not be found
SystemException - if a system exception occurred
public List<TasksProposal> getTasksProposals(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.
getTasksProposals in interface TasksProposalLocalServicestart - the lower bound of the range of tasks proposals to returnend - the upper bound of the range of tasks proposals to return (not inclusive)
SystemException - if a system exception occurred
public int getTasksProposalsCount()
throws SystemException
getTasksProposalsCount in interface TasksProposalLocalServiceSystemException - if a system exception occurred
public TasksProposal updateTasksProposal(TasksProposal tasksProposal)
throws SystemException
updateTasksProposal in interface TasksProposalLocalServicetasksProposal - the tasks proposal to update
SystemException - if a system exception occurred
public TasksProposal updateTasksProposal(TasksProposal tasksProposal,
boolean merge)
throws SystemException
updateTasksProposal in interface TasksProposalLocalServicetasksProposal - the tasks proposal to updatemerge - whether to merge the tasks proposal 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 occurred
public TasksProposal addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
addProposal in interface TasksProposalLocalServicePortalException
SystemException
public TasksProposal addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
Boolean addCommunityPermissions,
Boolean addGuestPermissions,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
addProposal in interface TasksProposalLocalServicePortalException
SystemException
public TasksProposal addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
addProposal in interface TasksProposalLocalServicePortalException
SystemException
public void addProposalResources(long proposalId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
addProposalResources in interface TasksProposalLocalServicePortalException
SystemException
public void addProposalResources(long proposalId,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
addProposalResources in interface TasksProposalLocalServicePortalException
SystemException
public void addProposalResources(TasksProposal proposal,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
addProposalResources in interface TasksProposalLocalServicePortalException
SystemException
public void addProposalResources(TasksProposal proposal,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
addProposalResources in interface TasksProposalLocalServicePortalException
SystemException
public void deleteProposal(long proposalId)
throws PortalException,
SystemException
deleteProposal in interface TasksProposalLocalServicePortalException
SystemException
public void deleteProposal(long classNameId,
String classPK)
throws PortalException,
SystemException
deleteProposal in interface TasksProposalLocalServicePortalException
SystemException
public void deleteProposal(String className,
String classPK)
throws PortalException,
SystemException
deleteProposal in interface TasksProposalLocalServicePortalException
SystemException
public void deleteProposal(TasksProposal proposal)
throws PortalException,
SystemException
deleteProposal in interface TasksProposalLocalServicePortalException
SystemException
public void deleteProposals(long groupId)
throws PortalException,
SystemException
deleteProposals in interface TasksProposalLocalServicePortalException
SystemException
public TasksProposal getProposal(long proposalId)
throws PortalException,
SystemException
getProposal in interface TasksProposalLocalServicePortalException
SystemException
public TasksProposal getProposal(long classNameId,
String classPK)
throws PortalException,
SystemException
getProposal in interface TasksProposalLocalServicePortalException
SystemException
public TasksProposal getProposal(String className,
String classPK)
throws PortalException,
SystemException
getProposal in interface TasksProposalLocalServicePortalException
SystemException
public List<TasksProposal> getProposals(long groupId,
int start,
int end)
throws SystemException
getProposals in interface TasksProposalLocalServiceSystemException
public int getProposalsCount(long groupId)
throws SystemException
getProposalsCount in interface TasksProposalLocalServiceSystemException
public List<TasksProposal> getReviewProposals(long groupId,
long userId,
int start,
int end)
throws SystemException
getReviewProposals in interface TasksProposalLocalServiceSystemException
public int getReviewProposalsCount(long groupId,
long userId)
throws SystemException
getReviewProposalsCount in interface TasksProposalLocalServiceSystemException
public List<TasksProposal> getUserProposals(long groupId,
long userId,
int start,
int end)
throws SystemException
getUserProposals in interface TasksProposalLocalServiceSystemException
public int getUserProposalsCount(long groupId,
long userId)
throws SystemException
getUserProposalsCount in interface TasksProposalLocalServiceSystemException
public TasksProposal updateProposal(long userId,
long proposalId,
String description,
int dueDateMonth,
int dueDateDay,
int dueDateYear,
int dueDateHour,
int dueDateMinute)
throws PortalException,
SystemException
updateProposal in interface TasksProposalLocalServicePortalException
SystemExceptionpublic TasksProposalLocalService getWrappedTasksProposalLocalService()
|
Liferay 6.0.6 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||