Class AbstractKeyValueDescribable.DescriptorImpl<T extends AbstractKeyValueDescribable<T>>

java.lang.Object
hudson.model.Descriptor<T>
org.jenkinsci.plugins.oic.AbstractKeyValueDescribable.DescriptorImpl<T>
All Implemented Interfaces:
Saveable, Loadable, OnMaster
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>
  • Constructor Details

    • DescriptorImpl

      public DescriptorImpl()
  • Method Details

    • doCheckKey

      public abstract FormValidation doCheckKey(@QueryParameter String key)
      Check the key for validity. In addition to being used by the UI, any FormValidation of Kind.ERROR will cause a fail to create the describable. By default, this method returns FormValidation.ok(), subclasses should override this in order to provide any required checking.
    • doCheckValue

      public abstract FormValidation doCheckValue(@QueryParameter String value)
      Check the key for validity. In addition to being used by the UI, any FormValidation of Kind.ERROR will cause a fail to create the describable. By default, this method returns FormValidation.ok(), subclasses should override this in order to provide any required checking.