blob: f8ea2e91655ed867f6a8082d3011762dbaf7f622 [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.core.cmp.jpa;
import javax.persistence.Column;
import javax.persistence.Embeddable;
@Embeddable
public class EmbeddedBillPk {
private long billNumber;
private long billVersion;
private long billRevision;
public EmbeddedBillPk() {
}
public EmbeddedBillPk(long number, long version, long revision) {
this.billNumber = number;
this.billVersion = version;
this.billRevision = revision;
}
@Column(name="billNumber")
public long getBillNumber() {
return this.billNumber;
}
public void setBillNumber(long number) {
this.billNumber = number;
}
@Column(name="billVersion")
public long getBillVersion() {
return this.billVersion;
}
public void setBillVersion(long version) {
this.billVersion = version;
}
@Column(name="billRevision")
public long getBillRevision() {
return this.billRevision;
}
public void setBillRevision(long revision) {
this.billRevision = revision;
}
public boolean equals(Object obj) {
if (obj == this)
return true;
if (!(obj instanceof EmbeddedBillPk))
return false;
EmbeddedBillPk pk = (EmbeddedBillPk)obj;
if (billNumber != pk.billNumber)
return false;
if (billVersion != pk.billVersion)
return false;
if (billRevision != pk.billRevision)
return false;
return true;
}
public int hashCode() {
return (billNumber + "." + billVersion + "." + billRevision).hashCode();
}
}