Package org.opennms.protocols.http
Class FormField
- java.lang.Object
-
- org.opennms.protocols.http.FormField
-
public class FormField extends java.lang.Object
The Class FormField.- Author:
- Alejandro Galue
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Gets the name.java.lang.String
getValue()
Gets the value.void
setName(java.lang.String name)
Sets the name.void
setValue(java.lang.String value)
Sets the value.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name.- Returns:
- the name
-
setName
public void setName(java.lang.String name)
Sets the name.- Parameters:
name
- the new name
-
getValue
public java.lang.String getValue()
Gets the value.- Returns:
- the value
-
setValue
public void setValue(java.lang.String value)
Sets the value.- Parameters:
value
- the new value
-
-