Class BuildFeatureDescriptorImpl
- java.lang.Object
-
- jetbrains.buildServer.serverSide.impl.BuildFeatureDescriptorImpl
-
- All Implemented Interfaces:
ParametersDescriptor
,SBuildFeatureDescriptor
public class BuildFeatureDescriptorImpl extends Object implements SBuildFeatureDescriptor
-
-
Constructor Summary
Constructors Constructor Description BuildFeatureDescriptorImpl(String id, String type, Map<String,String> params, ExtensionsProvider extensionHolder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
BuildFeature
getBuildFeature()
Return object representing build featureString
getId()
Returns unique id of this descriptorMap<String,String>
getParameters()
Returns parameters map.String
getType()
Returns type of the parametersint
hashCode()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jetbrains.buildServer.serverSide.SBuildFeatureDescriptor
getBuildFeatureRequirements
-
-
-
-
Method Detail
-
getId
@NotNull public String getId()
Description copied from interface:ParametersDescriptor
Returns unique id of this descriptor- Specified by:
getId
in interfaceParametersDescriptor
- Returns:
- unique id of this descriptor
-
getBuildFeature
@NotNull public BuildFeature getBuildFeature()
Description copied from interface:SBuildFeatureDescriptor
Return object representing build feature- Specified by:
getBuildFeature
in interfaceSBuildFeatureDescriptor
- Returns:
- see above
-
getType
@NotNull public String getType()
Description copied from interface:ParametersDescriptor
Returns type of the parameters- Specified by:
getType
in interfaceParametersDescriptor
- Returns:
- parameters type
-
getParameters
@NotNull public Map<String,String> getParameters()
Description copied from interface:ParametersDescriptor
Returns parameters map.- Specified by:
getParameters
in interfaceParametersDescriptor
- Returns:
- parameters map
-
-