com.greenpepper.samples.application.bank.Owner Maven / Gradle / Ivy
/*
* Copyright (c) 2007 Pyxis Technologies inc.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA,
* or see the FSF site: http://www.fsf.org.
*/
package com.greenpepper.samples.application.bank;
/**
* Owner class.
*
* @author oaouattara
* @version $Id: $Id
*/
public class Owner
{
private final String firstName;
private final String lastName;
/**
* Constructor for Owner.
*
* @param firstName a {@link java.lang.String} object.
* @param lastName a {@link java.lang.String} object.
*/
public Owner(String firstName, String lastName)
{
this.firstName = firstName;
this.lastName = lastName;
}
/**
* Getter for the field firstName
.
*
* @return a {@link java.lang.String} object.
*/
public String getFirstName()
{
return firstName;
}
/**
* Getter for the field lastName
.
*
* @return a {@link java.lang.String} object.
*/
public String getLastName()
{
return lastName;
}
/**
* getFullName.
*
* @return a {@link java.lang.String} object.
*/
public String getFullName()
{
return firstName + " " + lastName;
}
}