Liferay 6.0-ee-sp2

com.liferay.portlet.tasks.service
Interface TasksProposalService

All Known Implementing Classes:
TasksProposalServiceWrapper

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

The interface for the tasks proposal remote service.

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:
TasksProposalServiceUtil, com.liferay.portlet.tasks.service.base.TasksProposalServiceBaseImpl, com.liferay.portlet.tasks.service.impl.TasksProposalServiceImpl

Method Summary
 TasksProposal addProposal(long groupId, String className, String classPK, String name, String description, long reviewUserId, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 TasksProposal addProposal(long groupId, String className, String classPK, String name, String description, long reviewUserId, String[] communityPermissions, String[] guestPermissions)
           
 void deleteProposal(long proposalId)
           
 TasksProposal updateProposal(long proposalId, String description, int dueDateMonth, int dueDateDay, int dueDateYear, int dueDateHour, int dueDateMinute)
           
 

Method Detail

addProposal

TasksProposal addProposal(long groupId,
                          String className,
                          String classPK,
                          String name,
                          String description,
                          long reviewUserId,
                          boolean addCommunityPermissions,
                          boolean addGuestPermissions)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

addProposal

TasksProposal addProposal(long groupId,
                          String className,
                          String classPK,
                          String name,
                          String description,
                          long reviewUserId,
                          String[] communityPermissions,
                          String[] guestPermissions)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

deleteProposal

void deleteProposal(long proposalId)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

updateProposal

TasksProposal updateProposal(long proposalId,
                             String description,
                             int dueDateMonth,
                             int dueDateDay,
                             int dueDateYear,
                             int dueDateHour,
                             int dueDateMinute)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

Liferay 6.0-ee-sp2