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.SerializableHTTP argument.- Author:
- Daniel Sagenschneider
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description HttpValueLocationlocationLocation that thisHttpArgumentwas sourced.java.lang.StringnameArgument name.HttpArgumentnextNextHttpArgument.java.lang.StringvalueArgument 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 thisHttpArgumentwas 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.
-
-