Package com.adobe.aio.cloudmanager
Interface Repository
-
public interface Repository
A Repository definition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Description of this repository.String
getId()
Identifier of the repository.String
getName()
Name of the repositoryString
getProgramId()
The id of the associated program contextString
getUrl()
URL to the repository.Collection<String>
listBranches()
List all the branches associated with the repository.
-
-
-
Method Detail
-
getId
String getId()
Identifier of the repository. Unique within the space.- Returns:
- id
-
getProgramId
String getProgramId()
The id of the associated program context- Returns:
- the program id
-
getName
String getName()
Name of the repository- Returns:
- name
-
getDescription
String getDescription()
Description of this repository.- Returns:
- description
-
getUrl
String getUrl()
URL to the repository.- Returns:
- url
-
listBranches
Collection<String> listBranches() throws CloudManagerApiException
List all the branches associated with the repository.- Returns:
- branches
- Throws:
CloudManagerApiException
- when any error occurs
-
-