Interface IReposDelegator
-
- All Known Subinterfaces:
IOptionsServer
,IServer
,IStreamingServer
- All Known Implementing Classes:
NtsServerImpl
,OneShotServerImpl
,ReposDelegator
,RpcServer
,Server
public interface IReposDelegator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IRepo>
getRepos()
Gets the repos.java.util.List<IRepo>
getRepos(ReposOptions options)
Get the repos with filter optionsjava.util.List<IRepo>
getRepos(java.lang.String clientName)
Gets the repos mapped within the client's view.
-
-
-
Method Detail
-
getRepos
java.util.List<IRepo> getRepos() throws ConnectionException, RequestException, AccessException
Gets the repos.- Returns:
- a list of repos
- Throws:
ConnectionException
- the connection exceptionRequestException
- the request exceptionAccessException
- the access exception
-
getRepos
java.util.List<IRepo> getRepos(ReposOptions options) throws P4JavaException
Get the repos with filter options- Parameters:
options
- Repos filter options- Returns:
- a list of repos
- Throws:
P4JavaException
- an api exception
-
getRepos
java.util.List<IRepo> getRepos(java.lang.String clientName) throws ConnectionException, RequestException, AccessException
Gets the repos mapped within the client's view.- Parameters:
clientName
- the name of the client workspace- Returns:
- a list of repos
- Throws:
ConnectionException
- on errorRequestException
- on errorAccessException
- on error
-
-