Class Indication.IndicationDescriptor
- java.lang.Object
-
- hudson.model.Descriptor<Indication>
-
- com.sonyericsson.jenkins.plugins.bfa.model.indication.Indication.IndicationDescriptor
-
- Direct Known Subclasses:
BuildLogIndication.BuildLogIndicationDescriptor
- Enclosing class:
- Indication
public abstract static class Indication.IndicationDescriptor extends Descriptor<Indication>
The descriptor for this indicator.
-
-
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 Constructor Description IndicationDescriptor()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FormValidation
checkPattern(String value)
Checks that the pattern is a valid regexp.FormValidation
doCheckPattern(String value)
Checks that the pattern is a valid regexp.static ExtensionList<Indication.IndicationDescriptor>
getAll()
Provides a list of all registered descriptors of this type.-
Methods inherited from class hudson.model.Descriptor
addHelpFileRedirect, bindJSON, calcAutoCompleteSettings, calcFillSettings, configure, configure, 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, getT, getViewPage, isInstance, isSubTypeOf, load, newInstance, newInstance, newInstancesFromHeteroList, newInstancesFromHeteroList, save, self, toArray, toList, toMap
-
-
-
-
Method Detail
-
getAll
public static ExtensionList<Indication.IndicationDescriptor> getAll()
Provides a list of all registered descriptors of this type.- Returns:
- the list of descriptors.
-
checkPattern
public static FormValidation checkPattern(@QueryParameter String value)
Checks that the pattern is a valid regexp.- Parameters:
value
- the pattern to check.- Returns:
FormValidation.ok()
if everything is well.
-
doCheckPattern
public FormValidation doCheckPattern(@QueryParameter String value)
Checks that the pattern is a valid regexp.- Parameters:
value
- the pattern to check.- Returns:
FormValidation.ok()
if everything is well.- See Also:
checkPattern(String)
-
-