/* * 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.ignite.yardstick.cache.model; import java.io.Externalizable; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; import org.apache.ignite.binary.BinaryObjectException; import org.apache.ignite.binary.BinaryReader; import org.apache.ignite.binary.BinaryWriter; import org.apache.ignite.binary.Binarylizable; import org.apache.ignite.cache.query.annotations.QuerySqlField; /** * Person record used for query test. */ public class Person implements Externalizable, Binarylizable { /** Person ID. */ @QuerySqlField(index = true) private int id; /** Organization ID. */ @QuerySqlField(index = true) private int orgId; /** First name (not-indexed). */ @QuerySqlField private String firstName; /** Last name (not indexed). */ @QuerySqlField private String lastName; /** Salary. */ @QuerySqlField(index = true) private double salary; /** * Constructs empty person. */ public Person() { // No-op. } /** * Constructs person record that is not linked to any organization. * * @param id Person ID. * @param firstName First name. * @param lastName Last name. * @param salary Salary. */ public Person(int id, String firstName, String lastName, double salary) { this(id, 0, firstName, lastName, salary); } /** * Constructs person record. * * @param id Person ID. * @param orgId Organization ID. * @param firstName First name. * @param lastName Last name. * @param salary Salary. */ public Person(int id, int orgId, String firstName, String lastName, double salary) { this.id = id; this.orgId = orgId; this.firstName = firstName; this.lastName = lastName; this.salary = salary; } /** * @return Person id. */ public int getId() { return id; } /** * @param id Person id. */ public void setId(int id) { this.id = id; } /** * @return Organization id. */ public int getOrganizationId() { return orgId; } /** * @param orgId Organization id. */ public void setOrganizationId(int orgId) { this.orgId = orgId; } /** * @return Person first name. */ public String getFirstName() { return firstName; } /** * @param firstName Person first name. */ public void setFirstName(String firstName) { this.firstName = firstName; } /** * @return Person last name. */ public String getLastName() { return lastName; } /** * @param lastName Person last name. */ public void setLastName(String lastName) { this.lastName = lastName; } /** * @return Salary. */ public double getSalary() { return salary; } /** * @param salary Salary. */ public void setSalary(double salary) { this.salary = salary; } /** {@inheritDoc} */ @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(id); out.writeInt(orgId); out.writeUTF(firstName); out.writeUTF(lastName); out.writeDouble(salary); } /** {@inheritDoc} */ @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { id = in.readInt(); orgId = in.readInt(); firstName = in.readUTF(); lastName = in.readUTF(); salary = in.readDouble(); } /** {@inheritDoc} */ @Override public void writeBinary(BinaryWriter writer) throws BinaryObjectException { writer.writeInt("id", id); writer.writeInt("orgId", orgId); writer.writeString("firstName", firstName); writer.writeString("lastName", lastName); writer.writeDouble("salary", salary); } /** {@inheritDoc} */ @Override public void readBinary(BinaryReader reader) throws BinaryObjectException { id = reader.readInt("id"); orgId = reader.readInt("orgId"); firstName = reader.readString("firstName"); lastName = reader.readString("lastName"); salary = reader.readDouble("salary"); } /** {@inheritDoc} */ @Override public boolean equals(Object o) { return this == o || (o instanceof Person) && id == ((Person)o).id; } /** {@inheritDoc} */ @Override public int hashCode() { return id; } /** {@inheritDoc} */ @Override public String toString() { return "Person [firstName=" + firstName + ", id=" + id + ", orgId=" + orgId + ", lastName=" + lastName + ", salary=" + salary + ']'; } }