| Modifier and Type | Method and Description |
|---|---|
Task |
TaskHandler.findTaskByActivityId(String activityId) |
| Modifier and Type | Method and Description |
|---|---|
List<Task> |
TaskHandler.findAllByMembership(String user,
List<String> memberships) |
List<Task> |
TaskHandler.findByProject(Long projectId) |
List<Task> |
TaskHandler.findByTag(String tag) |
List<Task> |
TaskHandler.findByTags(List<String> tags) |
List<Task> |
TaskHandler.findByUser(String user) |
List<Task> |
TaskHandler.findTaskByQuery(TaskQuery query) |
List<Task> |
TaskHandler.getIncomingTask(String username,
OrderBy orderBy) |
List<Task> |
TaskHandler.getToDoTask(String username,
List<Long> projectIds,
OrderBy orderBy,
Date fromDueDate,
Date toDueDate) |
| Modifier and Type | Method and Description |
|---|---|
long |
CommentHandler.count(Task task)
Count number comments of Task
|
List<Comment> |
CommentHandler.findCommentsOfTask(Task task,
int start,
int limit)
Load list comments of a task.
|
| Modifier and Type | Method and Description |
|---|---|
Task |
TaskDAOImpl.findTaskByActivityId(String activityId) |
| Modifier and Type | Method and Description |
|---|---|
List<Task> |
TaskDAOImpl.findAllByMembership(String user,
List<String> memberships) |
List<Task> |
TaskDAOImpl.findByProject(Long projectId) |
List<Task> |
TaskDAOImpl.findByTag(String tag) |
List<Task> |
TaskDAOImpl.findByTags(List<String> tags) |
List<Task> |
TaskDAOImpl.findByUser(String user) |
List<Task> |
TaskDAOImpl.findTaskByQuery(TaskQuery query) |
List<Task> |
TaskDAOImpl.getIncomingTask(String username,
OrderBy orderBy) |
List<Task> |
TaskDAOImpl.getToDoTask(String username,
List<Long> projectIds,
OrderBy orderBy,
Date fromDueDate,
Date toDueDate) |
| Modifier and Type | Method and Description |
|---|---|
long |
CommentDAOImpl.count(Task task) |
List<Comment> |
CommentDAOImpl.findCommentsOfTask(Task task,
int start,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
Task |
Task.clone() |
Task |
Comment.getTask() |
| Modifier and Type | Method and Description |
|---|---|
Set<Task> |
Status.getTasks() |
| Modifier and Type | Method and Description |
|---|---|
void |
Comment.setTask(Task task) |
| Modifier and Type | Method and Description |
|---|---|
void |
Status.setTasks(Set<Task> tasks) |
| Constructor and Description |
|---|
Status(long id,
String name,
Integer rank,
Set<Task> tasks,
Project project) |
Status(String name,
Integer rank,
Set<Task> tasks,
Project project) |
| Modifier and Type | Method and Description |
|---|---|
Task |
CommentModel.getTask() |
Task |
TaskModel.getTask() |
| Modifier and Type | Method and Description |
|---|---|
List<Task> |
GroupTask.getTasks() |
| Modifier and Type | Method and Description |
|---|---|
void |
TaskModel.setTask(Task task) |
| Constructor and Description |
|---|
GroupTask(String name,
List<Task> tasks) |
| Modifier and Type | Method and Description |
|---|---|
Task |
TaskBuilder.build() |
Task |
TaskService.cloneTaskById(long id) |
Task |
TaskService.createTask(Task task) |
Task |
ProjectService.createTaskToProjectId(long id,
Task task) |
Task |
TaskService.getTaskById(long id) |
Task |
TaskParser.parse(String input,
ParserContext context) |
Task |
TaskService.updateTaskCompleted(long id,
Boolean completed) |
Task |
TaskService.updateTaskInfo(long id,
String param,
String[] values,
TimeZone timezone) |
| Modifier and Type | Method and Description |
|---|---|
List<Task> |
TaskService.findTaskByQuery(TaskQuery query) |
List<Task> |
TaskService.getIncomingTasksByUser(String username,
OrderBy orderBy) |
List<Task> |
ProjectService.getTasksByProjectId(List<Long> ids,
OrderBy orderBy) |
List<Task> |
ProjectService.getTasksWithKeywordByProjectId(List<Long> ids,
OrderBy orderBy,
String keyword) |
List<Task> |
TaskService.getToDoTasksByUser(String username,
List<Long> projectIds,
OrderBy orderBy,
Date fromDueDate,
Date toDueDate) |
| Modifier and Type | Method and Description |
|---|---|
Task |
TaskService.createTask(Task task) |
Task |
ProjectService.createTaskToProjectId(long id,
Task task) |
void |
TaskService.deleteTask(Task task) |
List<Comment> |
TaskService.getCommentsByTask(Task task,
int start,
int limit) |
Long |
TaskService.getNbOfCommentsByTask(Task task) |
| Modifier and Type | Method and Description |
|---|---|
Task |
TaskServiceImpl.cloneTaskById(long id) |
Task |
TaskServiceImpl.createTask(Task task) |
Task |
ProjectServiceImpl.createTaskToProjectId(long id,
Task task) |
Task |
TaskEvent.getTask() |
Task |
TaskServiceImpl.getTaskById(long id) |
Task |
TaskParserImpl.parse(String input,
ParserContext context) |
Task |
TaskServiceImpl.updateTaskCompleted(long id,
Boolean completed) |
Task |
TaskServiceImpl.updateTaskInfo(long id,
String param,
String[] values,
TimeZone timezone) |
| Modifier and Type | Method and Description |
|---|---|
List<Task> |
TaskServiceImpl.findTaskByQuery(TaskQuery query) |
List<Task> |
TaskServiceImpl.getIncomingTasksByUser(String username,
OrderBy orderBy) |
List<Task> |
ProjectServiceImpl.getTasksByProjectId(List<Long> ids,
OrderBy orderBy) |
List<Task> |
ProjectServiceImpl.getTasksWithKeywordByProjectId(List<Long> ids,
OrderBy orderBy,
String keyword) |
List<Task> |
TaskServiceImpl.getToDoTasksByUser(String username,
List<Long> projectIds,
OrderBy orderBy,
Date fromDueDate,
Date toDueDate) |
| Modifier and Type | Method and Description |
|---|---|
Task |
TaskServiceImpl.createTask(Task task) |
Task |
ProjectServiceImpl.createTaskToProjectId(long id,
Task task) |
void |
TaskServiceImpl.deleteTask(Task task) |
List<Comment> |
TaskServiceImpl.getCommentsByTask(Task task,
int start,
int limit) |
Long |
TaskServiceImpl.getNbOfCommentsByTask(Task task) |
TaskEvent.EventBuilder |
TaskEvent.EventBuilder.withTask(Task task) |
| Modifier and Type | Method and Description |
|---|---|
static Map<GroupKey,List<Task>> |
TaskUtil.groupTasks(List<Task> tasks,
String groupBy,
TimeZone userTimezone,
ResourceBundle bundle) |
| Modifier and Type | Method and Description |
|---|---|
static org.exoplatform.calendar.model.Event |
TaskUtil.buildEvent(org.exoplatform.calendar.model.Event event,
Task task) |
static String |
TaskUtil.buildTaskURL(Task task,
org.exoplatform.portal.mop.SiteKey siteKey,
org.exoplatform.container.ExoContainer container,
org.exoplatform.web.controller.router.Router router) |
| Modifier and Type | Method and Description |
|---|---|
static Map<GroupKey,List<Task>> |
TaskUtil.groupTasks(List<Task> tasks,
String groupBy,
TimeZone userTimezone,
ResourceBundle bundle) |
Copyright © 2003–2015 eXo Platform SAS. All rights reserved.