Class AzureKeyVaultGlobalConfiguration
- java.lang.Object
-
- hudson.model.Descriptor<GlobalConfiguration>
-
- jenkins.model.GlobalConfiguration
-
- org.jenkinsci.plugins.azurekeyvaultplugin.AzureKeyVaultGlobalConfiguration
-
- All Implemented Interfaces:
ExtensionPoint
,Describable<GlobalConfiguration>
,Saveable
,OnMaster
@Extension @Symbol("azureKeyVault") public class AzureKeyVaultGlobalConfiguration extends GlobalConfiguration
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class hudson.model.Descriptor
Descriptor.FormException, Descriptor.PropertyType, Descriptor.Self
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Field Summary
Fields Modifier and Type Field Description static String
GENERATED_ID
-
Fields inherited from class hudson.model.Descriptor
clazz
-
-
Constructor Summary
Constructors Constructor Description AzureKeyVaultGlobalConfiguration()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ListBoxModel
doFillCredentialIDItems(Item context)
FormValidation
doReloadCache()
FormValidation
doTestConnection(String keyVaultURL, String credentialID)
static AzureKeyVaultGlobalConfiguration
get()
String
getCredentialID()
String
getKeyVaultURL()
void
setCredentialID(String credentialID)
void
setKeyVaultURL(String keyVaultURL)
-
Methods inherited from class jenkins.model.GlobalConfiguration
all, configure, getDescriptor, getGlobalConfigPage
-
Methods inherited from class hudson.model.Descriptor
addHelpFileRedirect, bindJSON, calcAutoCompleteSettings, calcFillSettings, configure, doHelp, find, find, findByDescribableClassName, findById, getCategory, getCheckMethod, getCheckUrl, getConfigFile, getConfigPage, getCurrentDescriptorByNameUrl, getDescriptorFullUrl, getDescriptorUrl, getDisplayName, getGlobalPropertyType, getHelpFile, getHelpFile, getHelpFile, getId, getJsonSafeClassName, getKlass, getPlugin, getPossibleViewNames, getPropertyType, getPropertyType, getPropertyTypeOrDie, getRequiredGlobalConfigPagePermission, getT, getViewPage, isInstance, isSubTypeOf, load, newInstance, newInstance, newInstancesFromHeteroList, newInstancesFromHeteroList, save, self, toArray, toList, toMap
-
-
-
-
Field Detail
-
GENERATED_ID
public static final String GENERATED_ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getKeyVaultURL
public String getKeyVaultURL()
-
setKeyVaultURL
@DataBoundSetter public void setKeyVaultURL(String keyVaultURL)
-
getCredentialID
public String getCredentialID()
-
setCredentialID
@DataBoundSetter public void setCredentialID(String credentialID)
-
doReloadCache
@POST public FormValidation doReloadCache()
-
doTestConnection
@POST public FormValidation doTestConnection(@QueryParameter("keyVaultURL") String keyVaultURL, @QueryParameter("credentialID") String credentialID)
-
doFillCredentialIDItems
@POST public ListBoxModel doFillCredentialIDItems(@AncestorInPath Item context)
-
get
public static AzureKeyVaultGlobalConfiguration get()
-
-