Package org.opennms.netmgt.model.notifd
Class Argument
- java.lang.Object
-
- org.opennms.netmgt.model.notifd.Argument
-
public class Argument extends Object
This is a data class to store the argument information for a Command- Author:
- Jason Johns
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getSubstitution()
Returns the substitution switchString
getSwitch()
Returns the switchString
getValue()
Returns the value of the argumentboolean
isStreamed()
Returns the boolean indicating if this argument should be sent to an input stream.void
setStreamed(boolean aBool)
Sets the boolean indicating if this argument should be sent to an input streamvoid
setSubstitution(String aValue)
Sets the substitution switchvoid
setSwitch(String aValue)
Sets the switch membervoid
setValue(String aValue)
Sets the value of the argumentString
toString()
Returns a string representation of the argument, for purposes of debugging
-
-
-
Method Detail
-
setSwitch
public void setSwitch(String aValue)
Sets the switch member- Parameters:
aValue
- the value of the switch
-
setSubstitution
public void setSubstitution(String aValue)
Sets the substitution switch- Parameters:
aValue
- the value of the substitution
-
setValue
public void setValue(String aValue)
Sets the value of the argument- Parameters:
aValue
- the value of the argument
-
getSwitch
public String getSwitch()
Returns the switch- Returns:
- String, the switch string
-
getSubstitution
public String getSubstitution()
Returns the substitution switch- Returns:
- String, the substitution
-
getValue
public String getValue()
Returns the value of the argument- Returns:
- String, the value of the argument
-
setStreamed
public void setStreamed(boolean aBool)
Sets the boolean indicating if this argument should be sent to an input stream- Parameters:
aBool
- true if the argument should be sent to a input stream, false otherwise
-
isStreamed
public boolean isStreamed()
Returns the boolean indicating if this argument should be sent to an input stream.- Returns:
- true if the argument should be sent to a input stream, false otherwise
-
-