Package jetbrains.buildServer.serverSide
Interface BuildFeatureDescriptorFactory
-
- All Known Implementing Classes:
BuildFeatureDescriptorFactoryImpl
public interface BuildFeatureDescriptorFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SBuildFeatureDescriptor
createBuildFeature(String id, String type, Map<String,String> params)
SBuildFeatureDescriptor
createNewBuildFeature(String type, Map<String,String> params)
BuildFeature
getBuildFeature(String type)
void
registerStandardGenerator(String type, String prefix)
-
-
-
Method Detail
-
registerStandardGenerator
void registerStandardGenerator(@NotNull String type, @NotNull String prefix)
-
createNewBuildFeature
@NotNull SBuildFeatureDescriptor createNewBuildFeature(@NotNull String type, @NotNull Map<String,String> params)
-
createBuildFeature
@NotNull SBuildFeatureDescriptor createBuildFeature(@NotNull String id, @NotNull String type, @NotNull Map<String,String> params) throws InvalidIdentifierException
- Throws:
InvalidIdentifierException
-
getBuildFeature
@Nullable BuildFeature getBuildFeature(@NotNull String type)
-
-