Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.datapipeline.model
Class PipelineObject

java.lang.Object
  extended by com.amazonaws.services.datapipeline.model.PipelineObject
All Implemented Interfaces:
Serializable

public class PipelineObject
extends Object
implements Serializable

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.

See Also:
Serialized Form

Constructor Summary
PipelineObject()
           
 
Method Summary
 boolean equals(Object obj)
           
 List<Field> getFields()
          Key-value pairs that define the properties of the object.
 String getId()
          Identifier of the object.
 String getName()
          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)
          Identifier of the object.
 void setName(String name)
          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)
          Identifier of the object.
 PipelineObject withName(String name)
          Name of the object.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PipelineObject

public PipelineObject()
Method Detail

getId

public String getId()
Identifier of the object.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Returns:
Identifier of the object.

setId

public void setId(String id)
Identifier of the object.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
id - Identifier of the object.

withId

public PipelineObject withId(String id)
Identifier of the object.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
id - Identifier of the object.
Returns:
A reference to this updated object so that method calls can be chained together.

getName

public String getName()
Name of the object.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Returns:
Name of the object.

setName

public void setName(String name)
Name of the object.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
name - Name of the object.

withName

public PipelineObject withName(String name)
Name of the object.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 1024
Pattern: [ -??-??-?\r\n\t]*

Parameters:
name - Name of the object.
Returns:
A reference to this updated object so that method calls can be chained together.

getFields

public List<Field> getFields()
Key-value pairs that define the properties of the object.

Returns:
Key-value pairs that define the properties of the object.

setFields

public void setFields(Collection<Field> fields)
Key-value pairs that define the properties of the object.

Parameters:
fields - Key-value pairs that define the properties of the object.

withFields

public PipelineObject withFields(Field... fields)
Key-value pairs that define the properties of the object.

Returns a reference to this object so that method calls can be chained together.

Parameters:
fields - Key-value pairs that define the properties of the object.
Returns:
A reference to this updated object so that method calls can be chained together.

withFields

public PipelineObject withFields(Collection<Field> fields)
Key-value pairs that define the properties of the object.

Returns a reference to this object so that method calls can be chained together.

Parameters:
fields - Key-value pairs that define the properties of the object.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.