blob: e5592ad8451a6c3f8ab3f8c3d81a22fb48270b02 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.test.object;
public class Account implements java.io.Serializable {
private String ssn;
private String firstName;
private String lastName;
private int balance;
public Account(final String ssn, final String firstName, final String lastName, final int balance) {
this.ssn = ssn;
this.firstName = firstName.trim();
this.lastName = lastName.trim();
this.balance = balance;
}
public Account() {
}
public boolean equals(final Object object) {
if (!(object instanceof Account)) return false;
final Account that = (Account) object;
return (this.ssn.equals(that.ssn) &&
this.firstName.equals(that.firstName) &&
this.lastName.equals(that.lastName) &&
this.balance == that.balance);
}
public String getSsn() {
return ssn;
}
public void setSsn(final String ssn) {
this.ssn = ssn;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(final String firstName) {
this.firstName = (firstName != null) ? firstName.trim() : null;
}
public String getLastName() {
return lastName;
}
public void setLastName(final String lastName) {
this.lastName = (lastName != null) ? lastName.trim() : null;
}
public int getBalance() {
return balance;
}
public void setBalance(final int balance) {
this.balance = balance;
}
public String toString() {
return "[" + ssn + "][" + firstName + "][" + lastName + "][" + balance + "]";
}
}