public class PipelineObject extends Object implements Serializable, Cloneable
Contains information about a pipeline object. This can be a logical, physical, or physical attempt pipeline object. The complete set of components of a pipeline defines the pipeline.
| Constructor and Description | 
|---|
| PipelineObject() | 
| Modifier and Type | Method and Description | 
|---|---|
| PipelineObject | clone() | 
| boolean | equals(Object obj) | 
| List<Field> | getFields()Key-value pairs that define the properties of the object. | 
| String | getId()The ID of the object. | 
| String | getName()The name of the object. | 
| int | hashCode() | 
| void | setFields(Collection<Field> fields)Key-value pairs that define the properties of the object. | 
| void | setId(String id)The ID of the object. | 
| void | setName(String name)The name of the object. | 
| String | toString()Returns a string representation of this object; useful for testing and
 debugging. | 
| PipelineObject | withFields(Collection<Field> fields)Key-value pairs that define the properties of the object. | 
| PipelineObject | withFields(Field... fields)Key-value pairs that define the properties of the object. | 
| PipelineObject | withId(String id)The ID of the object. | 
| PipelineObject | withName(String name)The name of the object. | 
public String getId()
 Constraints:
 Length: 1 - 1024
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
public void setId(String id)
 Constraints:
 Length: 1 - 1024
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
id - The ID of the object.public PipelineObject withId(String id)
Returns a reference to this object so that method calls can be chained together.
 Constraints:
 Length: 1 - 1024
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
id - The ID of the object.public String getName()
 Constraints:
 Length: 1 - 1024
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
public void setName(String name)
 Constraints:
 Length: 1 - 1024
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
name - The name of the object.public PipelineObject withName(String name)
Returns a reference to this object so that method calls can be chained together.
 Constraints:
 Length: 1 - 1024
 Pattern: [\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*
name - The name of the object.public List<Field> getFields()
public void setFields(Collection<Field> fields)
fields - Key-value pairs that define the properties of the object.public PipelineObject withFields(Field... fields)
 NOTE: This method appends the values to the existing list (if
 any). Use setFields(java.util.Collection) or withFields(java.util.Collection) if you want to override the
 existing values.
 
Returns a reference to this object so that method calls can be chained together.
fields - Key-value pairs that define the properties of the object.public PipelineObject withFields(Collection<Field> fields)
Returns a reference to this object so that method calls can be chained together.
fields - Key-value pairs that define the properties of the object.public String toString()
toString in class ObjectObject.toString()public PipelineObject clone()
Copyright © 2015. All rights reserved.