Package org.sonar.api.batch.postjob
Interface PostJobDescriptor
-
- All Known Implementing Classes:
DefaultPostJobDescriptor
public interface PostJobDescriptorDescribe what aPostJobis doing. Information may be used by the platform to log interesting information or perform some optimization. SeePostJob.describe(PostJobDescriptor)- Since:
- 5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PostJobDescriptorname(java.lang.String postJobName)Displayable name of thePostJob.PostJobDescriptorrequireProperties(java.lang.String... propertyKeys)List properties thisPostJobdepends on.PostJobDescriptorrequireProperty(java.lang.String... propertyKey)Property thisPostJobdepends on.
-
-
-
Method Detail
-
name
PostJobDescriptor name(java.lang.String postJobName)
Displayable name of thePostJob. Will be displayed in logs.
-
requireProperty
PostJobDescriptor requireProperty(java.lang.String... propertyKey)
-
requireProperties
PostJobDescriptor requireProperties(java.lang.String... propertyKeys)
-
-