| Modifier and Type | Method and Description |
|---|---|
ProjectDto |
ProjectDto.clone(boolean cloneTask) |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
ProjectRestService.cloneProject(ProjectDto projectDto) |
javax.ws.rs.core.Response |
ProjectRestService.createProject(ProjectDto projectDto) |
javax.ws.rs.core.Response |
ProjectRestService.updateProject(long projectId,
ProjectDto projectDto) |
| Modifier and Type | Method and Description |
|---|---|
ProjectDto |
ProjectService.cloneProject(long projectId,
boolean cloneTask)
Clone a project with given
projectId. |
ProjectDto |
ProjectService.createProject(ProjectDto project)
Create a project with given
project model object. |
ProjectDto |
ProjectService.createProject(ProjectDto project,
long parentId)
Create a sub-project with given
project model object and parent project ID. |
ProjectDto |
ProjectService.getProject(Long projectId)
Return the project with given
projectId. |
ProjectDto |
ProjectService.updateProject(ProjectDto project)
Update the project.
|
| Modifier and Type | Method and Description |
|---|---|
List<ProjectDto> |
ProjectService.findCollaboratedProjects(String userName,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectService.findNotEmptyProjects(List<String> memberships,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectService.findProjects(List<String> memberships,
String keyword,
OrderBy order,
int offset,
int limit) |
List<ProjectDto> |
ProjectService.findProjects(ProjectQuery query,
int offset,
int limit) |
List<ProjectDto> |
ProjectService.getSubProjects(long parentId,
int offset,
int limit)
Return a list of children of a parent project with given
parentId. |
| Modifier and Type | Method and Description |
|---|---|
void |
StatusService.createInitialStatuses(ProjectDto project)
Create initial statuses for given
project. |
ProjectDto |
ProjectService.createProject(ProjectDto project)
Create a project with given
project model object. |
ProjectDto |
ProjectService.createProject(ProjectDto project,
long parentId)
Create a sub-project with given
project model object and parent project ID. |
StatusDto |
StatusService.createStatus(ProjectDto project,
String status) |
StatusDto |
StatusService.createStatus(ProjectDto project,
String status,
int rank) |
ProjectDto |
ProjectService.updateProject(ProjectDto project)
Update the project.
|
| Modifier and Type | Method and Description |
|---|---|
ProjectDto |
ProjectServiceImpl.cloneProject(long id,
boolean cloneTask) |
ProjectDto |
ProjectServiceImpl.createProject(ProjectDto project) |
ProjectDto |
ProjectServiceImpl.createProject(ProjectDto project,
long parentId) |
ProjectDto |
ProjectServiceImpl.getProject(Long id) |
ProjectDto |
ProjectServiceImpl.updateProject(ProjectDto proj) |
| Modifier and Type | Method and Description |
|---|---|
List<ProjectDto> |
ProjectServiceImpl.findCollaboratedProjects(String userName,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectServiceImpl.findNotEmptyProjects(List<String> memberships,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectServiceImpl.findProjects(List<String> memberships,
String keyword,
OrderBy order,
int offset,
int limit) |
List<ProjectDto> |
ProjectServiceImpl.findProjects(ProjectQuery query,
int offset,
int limit) |
List<ProjectDto> |
ProjectServiceImpl.getSubProjects(long parentId,
int offset,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
void |
StatusServiceImpl.createInitialStatuses(ProjectDto proj) |
ProjectDto |
ProjectServiceImpl.createProject(ProjectDto project) |
ProjectDto |
ProjectServiceImpl.createProject(ProjectDto project,
long parentId) |
StatusDto |
StatusServiceImpl.createStatus(ProjectDto project,
String name) |
StatusDto |
StatusServiceImpl.createStatus(ProjectDto project,
String name,
int rank) |
ProjectDto |
ProjectServiceImpl.updateProject(ProjectDto proj) |
| Modifier and Type | Method and Description |
|---|---|
ProjectDto |
ProjectStorage.cloneProject(long projectId,
boolean cloneTask)
Clone a project with given
projectId. |
ProjectDto |
ProjectStorage.createProject(ProjectDto project)
Create a project with given
project model object. |
ProjectDto |
ProjectStorage.createProject(ProjectDto project,
long parentId)
Create a sub-project with given
project model object and parent project ID. |
ProjectDto |
ProjectStorage.getProject(Long projectId)
Return the project with given
projectId. |
ProjectDto |
ProjectStorage.projectToDto(Project project) |
ProjectDto |
ProjectStorage.updateProject(ProjectDto project)
Update the project.
|
| Modifier and Type | Method and Description |
|---|---|
List<ProjectDto> |
ProjectStorage.findCollaboratedProjects(String userName,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorage.findNotEmptyProjects(List<String> memberships,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorage.findProjects(List<String> memberships,
String keyword,
OrderBy order,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorage.findProjects(ProjectQuery query,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorage.getSubProjects(long parentId,
int offset,
int limit)
Return a list of children of a parent project with given
parentId. |
| Modifier and Type | Method and Description |
|---|---|
ProjectDto |
ProjectStorage.createProject(ProjectDto project)
Create a project with given
project model object. |
ProjectDto |
ProjectStorage.createProject(ProjectDto project,
long parentId)
Create a sub-project with given
project model object and parent project ID. |
StatusDto |
StatusStorage.createStatus(ProjectDto project,
String status) |
StatusDto |
StatusStorage.createStatus(ProjectDto project,
String status,
int rank) |
Project |
ProjectStorage.projectToEntity(ProjectDto projectDto) |
ProjectDto |
ProjectStorage.updateProject(ProjectDto project)
Update the project.
|
| Modifier and Type | Method and Description |
|---|---|
ProjectDto |
ProjectStorageImpl.cloneProject(long projectId,
boolean cloneTask) |
ProjectDto |
ProjectStorageImpl.createProject(ProjectDto project) |
ProjectDto |
ProjectStorageImpl.createProject(ProjectDto project,
long parentId) |
ProjectDto |
ProjectStorageImpl.getProject(Long projectId) |
ProjectDto |
ProjectStorageImpl.projectToDto(Project project) |
ProjectDto |
ProjectStorageImpl.updateProject(ProjectDto project) |
| Modifier and Type | Method and Description |
|---|---|
List<ProjectDto> |
ProjectStorageImpl.findCollaboratedProjects(String userName,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorageImpl.findNotEmptyProjects(List<String> memberships,
String keyword,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorageImpl.findProjects(List<String> memberships,
String keyword,
OrderBy order,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorageImpl.findProjects(ProjectQuery query,
int offset,
int limit) |
List<ProjectDto> |
ProjectStorageImpl.getSubProjects(long parentId,
int offset,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
ProjectDto |
ProjectStorageImpl.createProject(ProjectDto project) |
ProjectDto |
ProjectStorageImpl.createProject(ProjectDto project,
long parentId) |
StatusDto |
StatusStorageImpl.createStatus(ProjectDto project,
String status) |
StatusDto |
StatusStorageImpl.createStatus(ProjectDto project,
String status,
int rank) |
Project |
ProjectStorageImpl.projectToEntity(ProjectDto projectDto) |
ProjectDto |
ProjectStorageImpl.updateProject(ProjectDto project) |
| Modifier and Type | Method and Description |
|---|---|
static ProjectDto |
ProjectUtil.newProjectInstanceDto(String name,
String description,
Set<String> managers,
Set<String> participators) |
static ProjectDto |
ProjectUtil.newProjectInstanceDto(String name,
String description,
String username) |
static ProjectDto |
ProjectUtil.projectToDto(Project project) |
static ProjectDto |
ProjectUtil.saveProjectField(ProjectService projService,
long projectId,
Map<String,String[]> fields) |
| Modifier and Type | Method and Description |
|---|---|
static List<ProjectDto> |
ProjectUtil.flattenTree(List<ProjectDto> projectTree,
ProjectService projectService,
int offset,
int limit) |
static List<ProjectDto> |
ProjectUtil.getProjectTree(List<ProjectDto> projects,
org.exoplatform.services.security.Identity identity) |
static List<ProjectDto> |
ProjectUtil.getProjectTree(List<String> memberships,
String query,
org.exoplatform.services.security.Identity identity,
ProjectService projectService,
int offset,
int limit) |
static List<ProjectDto> |
ProjectUtil.getProjectTree(String space_group_id,
ProjectService projectService,
int offset,
int limit) |
| Modifier and Type | Method and Description |
|---|---|
static Project |
ProjectUtil.projectToEntity(ProjectDto projectDto) |
| Modifier and Type | Method and Description |
|---|---|
static List<ProjectDto> |
ProjectUtil.flattenTree(List<ProjectDto> projectTree,
ProjectService projectService,
int offset,
int limit) |
static List<ProjectDto> |
ProjectUtil.getProjectTree(List<ProjectDto> projects,
org.exoplatform.services.security.Identity identity) |
Copyright © 2003–2021 eXo Platform SAS. All rights reserved.