blob: 6e7c47f2e4a1d9063c33c21e3fea8753cfe384d2 [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
<<<<<<< Updated upstream
*
* 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
=======
*
* https://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
>>>>>>> Stashed changes
* limitations under the License.
*/
package org.apache.jdo.tck.query.result.classes;
import org.apache.jdo.tck.util.EqualityHelper;
/**
* JDOQL result class having bean properties <code>firstname</code>, <code>firstName</code>, <code>
* lastname</code>, and <code>lastName</code>. These properties are used by JDO query tests in
* result clauses. There are two different bean properties on each field, <code>firstname</code> and
* <code>lastname</code> because some result clauses in JDO query tests specify those properties in
* <code>AS</code> clauses.
*/
public class FullName {
private String firstName;
private String lastName;
public FullName() {}
public FullName(String firstName, String lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
/**
* @see Object#hashCode()
*/
public int hashCode() {
int result = 0;
result += this.firstName != null ? this.firstName.hashCode() : 0;
result += this.lastName != null ? this.lastName.hashCode() : 0;
return result;
}
/**
* @see Object#equals(java.lang.Object)
*/
public boolean equals(Object o) {
if (!(o instanceof FullName)) return false;
FullName other = (FullName) o;
return EqualityHelper.equals(this.firstName, other.firstName)
&& EqualityHelper.equals(this.lastName, other.lastName);
}
/**
* @see Object#toString()
*/
public String toString() {
return this.firstName + ' ' + this.lastName;
}
/**
* @return Returns the firstName.
*/
public String getFirstName() {
return firstName;
}
/**
* @param firstName The firstName to set.
*/
public void setFirstName(String firstName) {
this.firstName = firstName;
}
/**
* @return Returns the lastName.
*/
public String getLastName() {
return lastName;
}
/**
* @param lastName The lastName to set.
*/
public void setLastName(String lastName) {
this.lastName = lastName;
}
/**
* @return Returns the firstName.
*/
public String getFirstname() {
return firstName;
}
/**
* @param firstname The firstName to set.
*/
public void setFirstname(String firstname) {
this.firstName = firstname;
}
/**
* @return Returns the lastName.
*/
public String getLastname() {
return lastName;
}
/**
* @param lastname The lastName to set.
*/
public void setLastname(String lastname) {
this.lastName = lastname;
}
}