com.cloudbees.plugins.credentials.impl.BaseStandardCredentials Java Examples
The following examples show how to use
com.cloudbees.plugins.credentials.impl.BaseStandardCredentials.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JiraSendDeploymentInfoStepTest.java From atlassian-jira-software-cloud-plugin with Apache License 2.0 | 4 votes |
private static BaseStandardCredentials secretCredential() { return new StringCredentialsImpl( CredentialsScope.GLOBAL, CREDENTIAL_ID, "test-secret", Secret.fromString("secret")); }
Example #2
Source File: JiraSendBuildInfoStepTest.java From atlassian-jira-software-cloud-plugin with Apache License 2.0 | 4 votes |
private static BaseStandardCredentials secretCredential() { return new StringCredentialsImpl( CredentialsScope.GLOBAL, CREDENTIAL_ID, "test-secret", Secret.fromString("secret")); }