Skip to content

Commit

Permalink
INTCMN-157: Restore old create projectVersion method for backward com…
Browse files Browse the repository at this point in the history
…patability
  • Loading branch information
stevebillings committed Mar 29, 2017
1 parent 54bef2c commit 9661763
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@ public List<ProjectVersionView> getAllProjectVersions(final String versionsUrl)
return allProjectVersionItems;
}

public String createHubVersion(final ProjectView project, final String versionName, final ProjectVersionPhaseEnum phase,
final ProjectVersionDistributionEnum dist)
throws IntegrationException {
return createHubVersion(project, versionName, phase,
dist, "");
}

public String createHubVersion(final ProjectView project, final String versionName, final ProjectVersionPhaseEnum phase,
final ProjectVersionDistributionEnum dist, final String nickname)
throws IntegrationException {
Expand Down

0 comments on commit 9661763

Please sign in to comment.