Package net.officefloor.web.build
Interface HttpParameter
-
public interface HttpParameter
HTTP parameter.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpValueLocation
getLocation()
Obtains theHttpValueLocation
on theHttpRequest
.java.lang.String
getName()
Obtains the name.boolean
isRequired()
Indicates if required.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Obtains the name.- Returns:
- Name.
-
getLocation
HttpValueLocation getLocation()
Obtains theHttpValueLocation
on theHttpRequest
.- Returns:
HttpValueLocation
on theHttpRequest
.
-
isRequired
boolean isRequired()
Indicates if required.- Returns:
true
if required.
-
-