Class BitbucketIssueTrackerProxy
- java.lang.Object
-
- org.vx68k.netbeans.module.bitbucket.BitbucketIssueTrackerProxy
-
- All Implemented Interfaces:
BitbucketIssueTracker
public class BitbucketIssueTrackerProxy extends Object implements BitbucketIssueTracker
Issue tracker proxy for Bitbucket Cloud.- Author:
- Kaz Nishimura
-
-
Constructor Summary
Constructors Constructor Description BitbucketIssueTrackerProxy()
Initializes the object.BitbucketIssueTrackerProxy(BitbucketIssueTracker target)
Initializes the object with an initial value of the target issue tracker.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BitbucketIssue
getIssue(int id)
BitbucketRepository
getRepository()
Collection<BitbucketIssue>
issues()
Collection<BitbucketIssue>
issues(String filter)
void
setTarget(BitbucketIssueTracker newValue)
Sets the target issue tracker.
-
-
-
Constructor Detail
-
BitbucketIssueTrackerProxy
public BitbucketIssueTrackerProxy()
Initializes the object.
-
BitbucketIssueTrackerProxy
public BitbucketIssueTrackerProxy(BitbucketIssueTracker target)
Initializes the object with an initial value of the target issue tracker.- Parameters:
target
- an initial value of the target issue tracker
-
-
Method Detail
-
setTarget
public final void setTarget(BitbucketIssueTracker newValue)
Sets the target issue tracker.- Parameters:
newValue
- a new value of the target issue tracker
-
getIssue
public final BitbucketIssue getIssue(int id)
- Specified by:
getIssue
in interfaceBitbucketIssueTracker
-
issues
public final Collection<BitbucketIssue> issues()
- Specified by:
issues
in interfaceBitbucketIssueTracker
-
issues
public final Collection<BitbucketIssue> issues(String filter)
- Specified by:
issues
in interfaceBitbucketIssueTracker
-
getRepository
public final BitbucketRepository getRepository()
- Specified by:
getRepository
in interfaceBitbucketIssueTracker
-
-