com.htmlhifive.resourcefw.sample.resource.person.Person.java Source code

Java tutorial

Introduction

Here is the source code for com.htmlhifive.resourcefw.sample.resource.person.Person.java

Source

/*
 * Copyright (C) 2012-2013 NS Solutions Corporation
 *
 * Licensed 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 com.htmlhifive.resourcefw.sample.resource.person;

import java.io.Serializable;

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;

/**
 * ???.
 *
 * @author kishigam
 */
@Entity
@Table(name = "PERSON")
public class Person implements Serializable {

    private static final long serialVersionUID = 2386952686106528168L;

    /**
     * ???ID.<br>
     */
    @Id
    private String personId;

    /**
     * ??????.
     */
    private String name;

    /**
     * ???.
     */
    private Integer age;

    /**
     * ???
     */
    private String organization;

    /**
     * @see Object#equals(Object)
     */
    @Override
    public boolean equals(Object obj) {

        if (this == obj)
            return true;
        if (!(obj instanceof Person))
            return false;

        Person otherObj = (Person) obj;

        return new EqualsBuilder().append(this.personId, otherObj.personId).append(this.name, otherObj.name)
                .append(this.organization, otherObj.organization).append(this.age, otherObj.age).isEquals();
    }

    /**
     * @see Object#hashCode()
     */
    @Override
    public int hashCode() {

        return new HashCodeBuilder(17, 37).append(this.personId).append(this.name).append(this.organization)
                .append(this.age).hashCode();
    }

    /**
     * @see Object#toString()
     */
    @Override
    public String toString() {

        return ToStringBuilder.reflectionToString(this);
    }

    /**
     * @return personId
     */
    public String getPersonId() {
        return personId;
    }

    /**
     * @param personId ? personId
     */
    public void setPersonId(String personId) {
        this.personId = personId;
    }

    /**
     * @return name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name ? name
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return age
     */
    public Integer getAge() {
        return age;
    }

    /**
     * @param age ? age
     */
    public void setAge(Integer age) {
        this.age = age;
    }

    /**
     * @return organization
     */
    public String getOrganization() {
        return organization;
    }

    /**
     * @param organization ? organization
     */
    public void setOrganization(String organization) {
        this.organization = organization;
    }
}