Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.elasticbeanstalk.model
Class ConfigurationOptionSetting

java.lang.Object
  extended by com.amazonaws.services.elasticbeanstalk.model.ConfigurationOptionSetting
All Implemented Interfaces:
Serializable

public class ConfigurationOptionSetting
extends Object
implements Serializable

A specification identifying an individual configuration option along with its current value.

See Also:
Serialized Form

Constructor Summary
ConfigurationOptionSetting()
          Default constructor for a new ConfigurationOptionSetting object.
ConfigurationOptionSetting(String namespace, String optionName, String value)
          Constructs a new ConfigurationOptionSetting object.
 
Method Summary
 boolean equals(Object obj)
           
 String getNamespace()
          A unique namespace identifying the option's associated AWS resource.
 String getOptionName()
          The name of the configuration option.
 String getValue()
          The current value for the configuration option.
 int hashCode()
           
 void setNamespace(String namespace)
          A unique namespace identifying the option's associated AWS resource.
 void setOptionName(String optionName)
          The name of the configuration option.
 void setValue(String value)
          The current value for the configuration option.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 ConfigurationOptionSetting withNamespace(String namespace)
          A unique namespace identifying the option's associated AWS resource.
 ConfigurationOptionSetting withOptionName(String optionName)
          The name of the configuration option.
 ConfigurationOptionSetting withValue(String value)
          The current value for the configuration option.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigurationOptionSetting

public ConfigurationOptionSetting()
Default constructor for a new ConfigurationOptionSetting object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.


ConfigurationOptionSetting

public ConfigurationOptionSetting(String namespace,
                                  String optionName,
                                  String value)
Constructs a new ConfigurationOptionSetting object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters:
namespace - A unique namespace identifying the option's associated AWS resource.
optionName - The name of the configuration option.
value - The current value for the configuration option.
Method Detail

getNamespace

public String getNamespace()
A unique namespace identifying the option's associated AWS resource.

Returns:
A unique namespace identifying the option's associated AWS resource.

setNamespace

public void setNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.

Parameters:
namespace - A unique namespace identifying the option's associated AWS resource.

withNamespace

public ConfigurationOptionSetting withNamespace(String namespace)
A unique namespace identifying the option's associated AWS resource.

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

Parameters:
namespace - A unique namespace identifying the option's associated AWS resource.
Returns:
A reference to this updated object so that method calls can be chained together.

getOptionName

public String getOptionName()
The name of the configuration option.

Returns:
The name of the configuration option.

setOptionName

public void setOptionName(String optionName)
The name of the configuration option.

Parameters:
optionName - The name of the configuration option.

withOptionName

public ConfigurationOptionSetting withOptionName(String optionName)
The name of the configuration option.

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

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

getValue

public String getValue()
The current value for the configuration option.

Returns:
The current value for the configuration option.

setValue

public void setValue(String value)
The current value for the configuration option.

Parameters:
value - The current value for the configuration option.

withValue

public ConfigurationOptionSetting withValue(String value)
The current value for the configuration option.

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

Parameters:
value - The current value for the configuration option.
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.