|
4 | 4 | import com.cloudbees.jenkins.plugins.bitbucket.api.BitbucketApiFactory;
|
5 | 5 | import com.cloudbees.jenkins.plugins.bitbucket.api.BitbucketAuthenticator;
|
6 | 6 | import com.cloudbees.jenkins.plugins.bitbucket.api.BitbucketRequestException;
|
| 7 | +import com.cloudbees.jenkins.plugins.bitbucket.client.BitbucketCloudApiClient; |
7 | 8 | import com.cloudbees.jenkins.plugins.bitbucket.endpoints.BitbucketCloudEndpoint;
|
8 | 9 | import com.cloudbees.jenkins.plugins.bitbucket.endpoints.BitbucketEndpointConfiguration;
|
9 | 10 | import com.cloudbees.plugins.credentials.CredentialsProvider;
|
|
22 | 23 |
|
23 | 24 | public class BitbucketApiUtils {
|
24 | 25 |
|
25 |
| - private static final Logger LOGGER = Logger.getLogger(BitbucketApiUtils.class.getName()); |
| 26 | + private static final Logger logger = Logger.getLogger(BitbucketApiUtils.class.getName()); |
| 27 | + |
| 28 | + public static boolean isCloud(BitbucketApi client) { |
| 29 | + return client instanceof BitbucketCloudApiClient; |
| 30 | + } |
26 | 31 |
|
27 | 32 | public static ListBoxModel getFromBitbucket(SCMSourceOwner context,
|
28 | 33 | String serverUrl,
|
@@ -78,10 +83,10 @@ public static ListBoxModel getFromBitbucket(SCMSourceOwner context,
|
78 | 83 | : Messages.BitbucketSCMSource_UnauthorizedOwner(repoOwner)).withSelectionCleared();
|
79 | 84 | }
|
80 | 85 | }
|
81 |
| - LOGGER.log(Level.SEVERE, e.getMessage(), e); |
| 86 | + logger.log(Level.SEVERE, e.getMessage(), e); |
82 | 87 | throw FormFillFailure.error(e.getMessage());
|
83 | 88 | } catch (Throwable e) {
|
84 |
| - LOGGER.log(Level.SEVERE, e.getMessage(), e); |
| 89 | + logger.log(Level.SEVERE, e.getMessage(), e); |
85 | 90 | throw FormFillFailure.error(e.getMessage());
|
86 | 91 | }
|
87 | 92 | }
|
|
0 commit comments