Package net.officefloor.web.state
Class HttpArgument
- java.lang.Object
-
- net.officefloor.web.state.HttpArgument
-
- All Implemented Interfaces:
java.io.Serializable
public class HttpArgument extends java.lang.Object implements java.io.Serializable
HTTP argument.- Author:
- Daniel Sagenschneider
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description HttpValueLocation
location
Location that thisHttpArgument
was sourced.java.lang.String
name
Argument name.HttpArgument
next
NextHttpArgument
.java.lang.String
value
Argument value.
-
Constructor Summary
Constructors Constructor Description HttpArgument(java.lang.String name, java.lang.String value, HttpValueLocation location)
Instantiate.
-
-
-
Field Detail
-
name
public final java.lang.String name
Argument name.
-
value
public final java.lang.String value
Argument value.
-
location
public final HttpValueLocation location
Location that thisHttpArgument
was sourced.
-
next
public HttpArgument next
NextHttpArgument
.
-
-
Constructor Detail
-
HttpArgument
public HttpArgument(java.lang.String name, java.lang.String value, HttpValueLocation location)
Instantiate.- Parameters:
name
- Argument name.value
- Argument value.location
-HttpValueLocation
.
-
-