|
Liferay 6.0-ee-sp2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface TasksProposalLocalServiceThe interface for the tasks proposal local service.
This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
TasksProposalLocalServiceUtil,
com.liferay.portlet.tasks.service.base.TasksProposalLocalServiceBaseImpl,
com.liferay.portlet.tasks.service.impl.TasksProposalLocalServiceImpl| 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)
Returns the number of rows that match the dynamic query. |
String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
|
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)
Returns the tasks proposal with the primary key. |
List<TasksProposal> |
getTasksProposals(int start,
int end)
Returns a range of all the tasks proposals. |
int |
getTasksProposalsCount()
Returns the number of tasks proposals. |
List<TasksProposal> |
getUserProposals(long groupId,
long userId,
int start,
int end)
|
int |
getUserProposalsCount(long groupId,
long userId)
|
void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
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 or adds it if it does not yet exist. |
TasksProposal |
updateTasksProposal(TasksProposal tasksProposal,
boolean merge)
Updates the tasks proposal in the database or adds it if it does not yet exist. |
| Method Detail |
|---|
TasksProposal addTasksProposal(TasksProposal tasksProposal)
throws SystemException
tasksProposal - the tasks proposal
SystemException - if a system exception occurredTasksProposal createTasksProposal(long proposalId)
proposalId - the primary key for the new tasks proposal
void deleteTasksProposal(long proposalId)
throws PortalException,
SystemException
proposalId - the primary key of the tasks proposal
PortalException - if a tasks proposal with the primary key could not be found
SystemException - if a system exception occurred
void deleteTasksProposal(TasksProposal tasksProposal)
throws SystemException
tasksProposal - the tasks proposal
SystemException - if a system exception occurred
List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery - the dynamic query
SystemException - if a system exception occurred
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 - 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 occurred
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 - 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 occurred
long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery - the dynamic query
SystemException - if a system exception occurred
@Transactional(propagation=SUPPORTS,
readOnly=true)
TasksProposal getTasksProposal(long proposalId)
throws PortalException,
SystemException
proposalId - the primary key of the tasks proposal
PortalException - if a tasks proposal with the primary key could not be found
SystemException - if a system exception occurred
@Transactional(propagation=SUPPORTS,
readOnly=true)
PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException,
SystemException
getPersistedModel in interface PersistedModelLocalServicePortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
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.
start - the lower bound of the range of tasks proposalsend - the upper bound of the range of tasks proposals (not inclusive)
SystemException - if a system exception occurred
@Transactional(propagation=SUPPORTS,
readOnly=true)
int getTasksProposalsCount()
throws SystemException
SystemException - if a system exception occurred
TasksProposal updateTasksProposal(TasksProposal tasksProposal)
throws SystemException
tasksProposal - the tasks proposal
SystemException - if a system exception occurred
TasksProposal updateTasksProposal(TasksProposal tasksProposal,
boolean merge)
throws SystemException
tasksProposal - the tasks proposalmerge - 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 occurredString getBeanIdentifier()
void setBeanIdentifier(String beanIdentifier)
beanIdentifier - the Spring bean ID for this bean
TasksProposal addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
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
PortalException
SystemException
TasksProposal addProposal(long userId,
long groupId,
String className,
String classPK,
String name,
String description,
long reviewUserId,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void addProposalResources(long proposalId,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void addProposalResources(long proposalId,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void addProposalResources(TasksProposal proposal,
boolean addCommunityPermissions,
boolean addGuestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void addProposalResources(TasksProposal proposal,
String[] communityPermissions,
String[] guestPermissions)
throws PortalException,
SystemException
PortalException
SystemException
void deleteProposal(long proposalId)
throws PortalException,
SystemException
PortalException
SystemException
void deleteProposal(long classNameId,
String classPK)
throws PortalException,
SystemException
PortalException
SystemException
void deleteProposal(String className,
String classPK)
throws PortalException,
SystemException
PortalException
SystemException
void deleteProposal(TasksProposal proposal)
throws PortalException,
SystemException
PortalException
SystemException
void deleteProposals(long groupId)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
TasksProposal getProposal(long proposalId)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
TasksProposal getProposal(long classNameId,
String classPK)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
TasksProposal getProposal(String className,
String classPK)
throws PortalException,
SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
List<TasksProposal> getProposals(long groupId,
int start,
int end)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
int getProposalsCount(long groupId)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
List<TasksProposal> getReviewProposals(long groupId,
long userId,
int start,
int end)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
int getReviewProposalsCount(long groupId,
long userId)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
List<TasksProposal> getUserProposals(long groupId,
long userId,
int start,
int end)
throws SystemException
SystemException
@Transactional(propagation=SUPPORTS,
readOnly=true)
int getUserProposalsCount(long groupId,
long userId)
throws SystemException
SystemException
TasksProposal updateProposal(long userId,
long proposalId,
String description,
int dueDateMonth,
int dueDateDay,
int dueDateYear,
int dueDateHour,
int dueDateMinute)
throws PortalException,
SystemException
PortalException
SystemException
|
Liferay 6.0-ee-sp2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||