com.liferay.portlet.tasks.service
Interface TasksProposalService
- All Known Implementing Classes:
- TasksProposalServiceBaseImpl, TasksProposalServiceImpl, TasksProposalServiceWrapper
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface TasksProposalService
The interface for the tasks proposal remote service.
Never modify or reference this interface directly. Always use TasksProposalServiceUtil
to access the tasks proposal remote service. Add custom service methods to TasksProposalServiceImpl
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:
TasksProposalServiceUtil
,
TasksProposalServiceBaseImpl
,
TasksProposalServiceImpl
- ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.
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)
|
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