Interface IBranchDelegator
-
- All Known Subinterfaces:
IOptionsServer,IServer,IStreamingServer
- All Known Implementing Classes:
BranchDelegator,NtsServerImpl,OneShotServerImpl,RpcServer,Server
public interface IBranchDelegator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringcreateBranchSpec(IBranchSpec branchSpec)TODO: This should be moved up to Server and changed to delegate to createBranchSpec with an options class.java.lang.StringdeleteBranchSpec(java.lang.String branchSpecName, boolean force)Deprecated.java.lang.StringdeleteBranchSpec(java.lang.String branchSpecName, DeleteBranchSpecOptions opts)Delete a named Perforce branch spec from the Perforce server.IBranchSpecgetBranchSpec(java.lang.String name)Get the branch spec for the given name.IBranchSpecgetBranchSpec(java.lang.String name, GetBranchSpecOptions opts)Get a specific named Perforce branch spec from the Perforce server.java.lang.StringupdateBranchSpec(IBranchSpec branchSpec)Update the data fields in an existing branch spec.
-
-
-
Method Detail
-
getBranchSpec
IBranchSpec getBranchSpec(java.lang.String name, GetBranchSpecOptions opts) throws P4JavaException
Get a specific named Perforce branch spec from the Perforce server.Note that since the Perforce server usually interprets asking for a non-existent branch spec as equivalent to asking for a template for a new branch spec, you will normally always get back a result here. It is best to first use the getBranchSpecList method to see if the branch spec exists, then use this method to retrieve a specific branch spec once you know it exists.
- Parameters:
name- non-null Perforce branch name.opts- GetBranchSpecOptions object describing optional parameters; if null, no options are set.- Returns:
- potentially-null IBranchSpec for the named Perforce branch spec.
- Throws:
P4JavaException- if any error occurs in the processing of this method.- Since:
- 2011.2
-
deleteBranchSpec
java.lang.String deleteBranchSpec(java.lang.String branchSpecName, DeleteBranchSpecOptions opts) throws P4JavaExceptionDelete a named Perforce branch spec from the Perforce server.- Parameters:
branchSpecName- non-null name of the branch spec to be deleted.opts- DeleteBranchSpecOptions object describing optional parameters; if null, no options are set.- Returns:
- non-null result message string from the Perforce server; this may include form trigger output pre-pended and / or appended to the "normal" message
- Throws:
P4JavaException- if any error occurs in the processing of this method.
-
getBranchSpec
IBranchSpec getBranchSpec(java.lang.String name) throws ConnectionException, RequestException, AccessException
Get the branch spec for the given name.- Parameters:
name- the name of the branch- Returns:
- a populated branch spec object
- Throws:
ConnectionException- when there is an error talking to the Helix serverRequestException- when there is a problem with the data provided in the requestAccessException- when access to the branch command is not authorised
-
createBranchSpec
java.lang.String createBranchSpec(@Nonnull IBranchSpec branchSpec) throws ConnectionException, RequestException, AccessExceptionTODO: This should be moved up to Server and changed to delegate to createBranchSpec with an options class. This would also allow for a force option.- Parameters:
branchSpec- the spec object containing the branch data fields.- Returns:
- The name of the newly create branch spec
- Throws:
ConnectionException- when there is an error talking to the Helix serverRequestException- when there is a problem with the data provided in the requestAccessException- when access to the branch command is not authorised
-
updateBranchSpec
java.lang.String updateBranchSpec(@Nonnull IBranchSpec branchSpec) throws ConnectionException, RequestException, AccessExceptionUpdate the data fields in an existing branch spec.- Parameters:
branchSpec- the branch data- Returns:
- the name of the updated spec
- Throws:
ConnectionException- when there is an error talking to the Helix serverRequestException- when there is a problem with the data provided in the requestAccessException- when access to the branch command is not authorised
-
deleteBranchSpec
java.lang.String deleteBranchSpec(java.lang.String branchSpecName, boolean force) throws ConnectionException, RequestException, AccessExceptionDeprecated.Delete a branch spec specifing whether it should be a forced operation.- Parameters:
branchSpecName- the name of the spec to deleteforce- whether to force the operation through- Returns:
- name of the deleted spec
- Throws:
ConnectionException- when there is an error talking to the Helix serverRequestException- when there is a problem with the data provided in the requestAccessException- when access to the branch command is not authorised
-
-