-
Methods in org.gitlab4j.api with parameters of type Constants.MilestoneState
Modifier and Type |
Method |
Description |
List<Milestone> |
MilestonesApi.getGroupMilestones(Object groupIdOrPath,
Constants.MilestoneState state) |
Get a list of group milestones that have the specified state.
|
List<Milestone> |
MilestonesApi.getGroupMilestones(Object groupIdOrPath,
Constants.MilestoneState state,
String search) |
Get a list of group milestones that have the specified state and match the search string.
|
List<Milestone> |
MilestonesApi.getMilestones(Object projectIdOrPath,
Constants.MilestoneState state) |
Get a list of project milestones that have the specified state.
|
List<Milestone> |
MilestonesApi.getMilestones(Object projectIdOrPath,
Constants.MilestoneState state,
String search) |
Get a list of project milestones that have the specified state and match the search string.
|
Milestone |
MilestonesApi.updateGroupMilestone(Object groupIdOrPath,
Long milestoneId,
String title,
String description,
Date dueDate,
Date startDate,
Constants.MilestoneState milestoneState) |
Update the specified group milestone.
|
Milestone |
MilestonesApi.updateMilestone(Object projectIdOrPath,
Long milestoneId,
String title,
String description,
Date dueDate,
Date startDate,
Constants.MilestoneState milestoneState) |
Update the specified milestone.
|