Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Example use of RefsCommandParameters with ScmService

John Lawlor
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 20, 2022

I am modifying a plugin for Bitbucket which has broken due to changes in Bitbucket 8.x.

I am trying to find a sample usage of this class:

https://docs.atlassian.com/bitbucket-server/javadoc/8.0.0/api/com/atlassian/bitbucket/scm/RefsCommandParameters.html

 

I can't figure it out from the javadoc

 

Thanks in advance!

1 answer

1 accepted

0 votes
Answer accepted
John Lawlor
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 27, 2022

This worked for me:

 

RefCallback refCallback = new RefCallback() {
@Override
public boolean onRef(@Nonnull Ref ref) throws IOException {
refs.add(ref);
return true;
}
};
scmService.getCommandFactory(repository).refs(new RefsCommandParameters.Builder().build(), refCallback).call();

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events