java.lang.Object
com.sample.addressbook.controller.contact.ContactSearchController.ContactSearchForm
- Enclosing class:
- ContactSearchController
- public static class ContactSearchController.ContactSearchForm
- extends java.lang.Object
firstname
private java.lang.String firstname
lastname
private java.lang.String lastname
all
private boolean all
ContactSearchController.ContactSearchForm
public ContactSearchController.ContactSearchForm()
prepareQueryValues
public java.util.HashMap prepareQueryValues()
getFirstname
public java.lang.String getFirstname()
setFirstname
public void setFirstname(java.lang.String value)
getLastname
public java.lang.String getLastname()
setLastname
public void setLastname(java.lang.String value)
getAll
public boolean getAll()
setAll
public void setAll(boolean value)
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).