Package com.circleci.client.v2.model
Class PipelineConfig
- java.lang.Object
-
- com.circleci.client.v2.model.PipelineConfig
-
public class PipelineConfig extends Object
The configuration strings for the pipeline.
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_COMPILEDstatic StringJSON_PROPERTY_SOURCE
-
Constructor Summary
Constructors Constructor Description PipelineConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PipelineConfigcompiled(String compiled)booleanequals(Object o)StringgetCompiled()The compiled configuration for the pipeline, after all orb expansion has been performed.StringgetSource()The source configuration for the pipeline, before any config compilation has been performed.inthashCode()voidsetCompiled(String compiled)voidsetSource(String source)PipelineConfigsource(String source)StringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_SOURCE
public static final String JSON_PROPERTY_SOURCE
- See Also:
- Constant Field Values
-
JSON_PROPERTY_COMPILED
public static final String JSON_PROPERTY_COMPILED
- See Also:
- Constant Field Values
-
-
Method Detail
-
source
public PipelineConfig source(String source)
-
getSource
public String getSource()
The source configuration for the pipeline, before any config compilation has been performed. If there is no config, then this field will be empty.- Returns:
- source
-
setSource
public void setSource(String source)
-
compiled
public PipelineConfig compiled(String compiled)
-
getCompiled
public String getCompiled()
The compiled configuration for the pipeline, after all orb expansion has been performed. If there were errors processing the pipeline's configuration, then this field may be empty.- Returns:
- compiled
-
setCompiled
public void setCompiled(String compiled)
-
-