private static final long serialVersionUID = 1L;
@Override
protected void populateItem( final Item<Contact> item ) {
final Contact contact = item.getModelObject();
item.add( new ActionPanel( "actions", item.getModel() ) );
item.add( new Label( "contactid", String.valueOf( contact.getId() ) ) );
item.add( new Label( "firstname", contact.getFirstName() ) );
item.add( new Label( "lastname", contact.getLastName() ) );
item.add( new Label( "homephone", contact.getHomePhone() ) );
item.add( new Label( "cellphone", contact.getCellPhone() ) );