Package io.jenkins.plugins.casc.core
Class UnsecuredAuthorizationStrategyConfigurator
java.lang.Object
io.jenkins.plugins.casc.BaseConfigurator<AuthorizationStrategy.Unsecured>
io.jenkins.plugins.casc.core.UnsecuredAuthorizationStrategyConfigurator
- All Implemented Interfaces:
Configurator<AuthorizationStrategy.Unsecured>
@Extension
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class)
public class UnsecuredAuthorizationStrategyConfigurator
extends BaseConfigurator<AuthorizationStrategy.Unsecured>
Handles
AuthorizationStrategy.Unsecured that requires a special treatment due to its singleton semantics.- Author:
- Kohsuke Kawaguchi
-
Nested Class Summary
Nested classes/interfaces inherited from class io.jenkins.plugins.casc.BaseConfigurator
BaseConfigurator.TypePair -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondescribe(AuthorizationStrategy.Unsecured instance, ConfigurationContext context) Describe a component as a Configuration NodesCNodeto be exported as yaml.Target type this configurator can handle.protected AuthorizationStrategy.Unsecuredinstance(Mapping mapping, ConfigurationContext context) Build or identify the target component this configurator has to handle based on the provided configuration node.Methods inherited from class io.jenkins.plugins.casc.BaseConfigurator
check, compare, configure, configure, createAttribute, describe, equals, exclusions, handleUnknown, hashCodeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.jenkins.plugins.casc.Configurator
canConfigure, describeStructure, getAttributes, getConfigurators, getName, getNames
-
Constructor Details
-
UnsecuredAuthorizationStrategyConfigurator
public UnsecuredAuthorizationStrategyConfigurator()
-
-
Method Details
-
getTarget
Description copied from interface:ConfiguratorTarget type this configurator can handle. -
getImplementedAPI
- Returns:
- The API implemented by target type, i.e. implemented
ExtensionPointfor components to implement some jenkins APIs, or raw type for others.
-
getDisplayName
- Returns:
- Human friendly display name for this component, used in generated documentation.
-
instance
Description copied from class:BaseConfiguratorBuild or identify the target component this configurator has to handle based on the provided configuration node.- Specified by:
instancein classBaseConfigurator<AuthorizationStrategy.Unsecured>- Parameters:
mapping- configuration for target component. Implementation may consume some entries to create a fresh new instance.context- Fully configured Jenkins object used as the starting point for this configuration.- Returns:
- instance to be configured, but not yet fully configured, see
BaseConfigurator.configure(Mapping, Object, boolean, ConfigurationContext)
-
describe
@CheckForNull public CNode describe(AuthorizationStrategy.Unsecured instance, ConfigurationContext context) Description copied from interface:ConfiguratorDescribe a component as a Configuration NodesCNodeto be exported as yaml. Only export attributes which are not set to default value.
-