Package org.jenkinsci.plugins.oic
Class AbstractKeyValueDescribable.DescriptorImpl<T extends AbstractKeyValueDescribable<T>>
java.lang.Object
hudson.model.Descriptor<T>
org.jenkinsci.plugins.oic.AbstractKeyValueDescribable.DescriptorImpl<T>
- Direct Known Subclasses:
LoginQueryParameter.DescriptorImpl
,LogoutQueryParameter.DescriptorImpl
- Enclosing class:
- AbstractKeyValueDescribable<T extends AbstractKeyValueDescribable<T>>
public abstract static class AbstractKeyValueDescribable.DescriptorImpl<T extends AbstractKeyValueDescribable<T>>
extends Descriptor<T>
-
Nested Class Summary
Nested classes/interfaces inherited from class hudson.model.Descriptor
Descriptor.FormException, Descriptor.PropertyType, Descriptor.Self
-
Field Summary
Fields inherited from class hudson.model.Descriptor
clazz
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract FormValidation
doCheckKey
(String key) Check the key for validity.abstract FormValidation
doCheckValue
(String value) Check the key for validity.Methods inherited from class hudson.model.Descriptor
addHelpFileRedirect, bindJSON, bindJSON, calcAutoCompleteSettings, calcFillSettings, configure, configure, configure, doHelp, doHelp, find, find, findByDescribableClassName, findById, getCategory, getCheckMethod, getCheckUrl, getConfigFile, getConfigPage, getCurrentDescriptorByNameUrl, getDescriptorFullUrl, getDescriptorUrl, getDisplayName, getGlobalConfigPage, getGlobalPropertyType, getHelpFile, getHelpFile, getHelpFile, getId, getJsonSafeClassName, getKlass, getPlugin, getPossibleViewNames, getPropertyType, getPropertyType, getPropertyTypeOrDie, getRequiredGlobalConfigPagePermission, getStaticHelpUrl, getStaticHelpUrl, getT, getViewPage, isInstance, isSubTypeOf, load, newInstance, newInstance, newInstance, newInstancesFromHeteroList, newInstancesFromHeteroList, newInstancesFromHeteroList, newInstancesFromHeteroList, save, self, toArray, toList, toMap
-
Constructor Details
-
DescriptorImpl
public DescriptorImpl()
-
-
Method Details
-
doCheckKey
Check the key for validity. In addition to being used by the UI, any FormValidation ofKind.ERROR
will cause a fail to create the describable. By default, this method returnsFormValidation.ok()
, subclasses should override this in order to provide any required checking. -
doCheckValue
Check the key for validity. In addition to being used by the UI, any FormValidation ofKind.ERROR
will cause a fail to create the describable. By default, this method returnsFormValidation.ok()
, subclasses should override this in order to provide any required checking.
-