Class AbstractExecutableCapabilityTypeModule
- java.lang.Object
-
- com.atlassian.bamboo.v2.build.agent.capability.AbstractCapabilityType
-
- com.atlassian.bamboo.v2.build.agent.capability.AbstractCapabilityTypeModule
-
- com.atlassian.bamboo.v2.build.agent.capability.AbstractExecutableCapabilityTypeModule
-
- All Implemented Interfaces:
InitablePluginModule,BambooPluginModule,CapabilityDefaultsHelper,CapabilityType,CapabilityTypeModule,com.atlassian.core.i18n.I18nTextProvider,Comparable<CapabilityType>
- Direct Known Subclasses:
AbstractMultipleExecutableCapabilityTypeModule,SshCapabilityTypeModule
public abstract class AbstractExecutableCapabilityTypeModule extends AbstractCapabilityTypeModule implements CapabilityDefaultsHelper, com.atlassian.core.i18n.I18nTextProvider
-
-
Field Summary
Fields Modifier and Type Field Description protected static StringAGENT_CAPABILITY_TYPE_PREFIX-
Fields inherited from interface com.atlassian.bamboo.v2.build.agent.capability.CapabilityDefaultsHelper
CAPABILITY_AGENT_ENVIRONMENT_PREFIX, CAPABILITY_BUILDER_PREFIX, CAPABILITY_BUILDER_TYPE
-
-
Constructor Summary
Constructors Constructor Description AbstractExecutableCapabilityTypeModule()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description @NotNull CapabilitySetaddDefaultCapabilities(@NotNull CapabilitySet capabilitySet)Adds default Capabilities for this module.@NotNull CapabilitygetCapability(@NotNull Map<String,String[]> params)Returns a new capability given the action params mapabstract StringgetCapabilityUndefinedKey()abstract List<String>getDefaultWindowPaths()abstract StringgetExecutableFilename()abstract StringgetExecutableKey()@NotNull StringgetLabel(@NotNull String key)The display labelabstract StringgetMandatoryCapabilityKey()static @Nullable StringgetParamValue(@NotNull Map<String,String[]> params, String field)StringgetText(String key)StringgetText(String s, Object[] objects)StringgetText(String key, String[] args)protected com.opensymphony.xwork2.TextProvidergetTextProvider()Deprecated.since 6.8 inject your ownvoidsetTextProvider(com.opensymphony.xwork2.TextProvider textProvider)Deprecated.since 6.8 use constructor injection or annotation injection@NotNull Map<String,String>validate(@NotNull Map<String,String[]> params)Validate given an action params map.-
Methods inherited from class com.atlassian.bamboo.v2.build.agent.capability.AbstractCapabilityTypeModule
getCapabilityTypeKey, getCapabilityTypeLabel, getEditHtml, getExtraInfo, getNewKeyFromLabel, getSortOrder, getValueDescriptionKey, init, isAllowRename, setTemplateRenderer
-
Methods inherited from class com.atlassian.bamboo.v2.build.agent.capability.AbstractCapabilityType
compareTo, equals, getViewTypeAction, hashCode, toString, updatePlanForNewLabel, updateTasksForNewLabel
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.atlassian.bamboo.v2.build.agent.capability.CapabilityType
getCapabilityTypeSpecificTaskConfigurationKey, getViewTypeAction, updatePlanForNewLabel
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Field Detail
-
AGENT_CAPABILITY_TYPE_PREFIX
protected static final String AGENT_CAPABILITY_TYPE_PREFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMandatoryCapabilityKey
public abstract String getMandatoryCapabilityKey()
-
getExecutableKey
public abstract String getExecutableKey()
-
getCapabilityUndefinedKey
public abstract String getCapabilityUndefinedKey()
-
getExecutableFilename
public abstract String getExecutableFilename()
-
getLabel
@NotNull public @NotNull String getLabel(@NotNull @NotNull String key)
Description copied from interface:CapabilityTypeThe display label- Specified by:
getLabelin interfaceCapabilityType- Returns:
-
validate
@NotNull public @NotNull Map<String,String> validate(@NotNull @NotNull Map<String,String[]> params)
Description copied from interface:CapabilityTypeValidate given an action params map.- Specified by:
validatein interfaceCapabilityType- Returns:
- Map with errors. key = field name, value = error message
-
getParamValue
@Nullable public static @Nullable String getParamValue(@NotNull @NotNull Map<String,String[]> params, String field)
-
getCapability
@NotNull public @NotNull Capability getCapability(@NotNull @NotNull Map<String,String[]> params)
Description copied from interface:CapabilityTypeReturns a new capability given the action params map- Specified by:
getCapabilityin interfaceCapabilityType
-
addDefaultCapabilities
@NotNull public @NotNull CapabilitySet addDefaultCapabilities(@NotNull @NotNull CapabilitySet capabilitySet)
Description copied from interface:CapabilityDefaultsHelperAdds default Capabilities for this module. Used during auto-detecting server capabilities.- Specified by:
addDefaultCapabilitiesin interfaceCapabilityDefaultsHelper- Parameters:
capabilitySet- to add the capability to- Returns:
- the supplied capabilitySet with the new capabilities included if found, else the given capabilitySet
-
getTextProvider
@Deprecated protected com.opensymphony.xwork2.TextProvider getTextProvider()
Deprecated.since 6.8 inject your own
-
getText
public String getText(String key)
- Specified by:
getTextin interfacecom.atlassian.core.i18n.I18nTextProvider
-
getText
public String getText(String s, Object[] objects)
- Specified by:
getTextin interfacecom.atlassian.core.i18n.I18nTextProvider
-
setTextProvider
@Deprecated public void setTextProvider(com.opensymphony.xwork2.TextProvider textProvider)
Deprecated.since 6.8 use constructor injection or annotation injection
-
-