blob: 61521be35b75bdd1bb7a447ec427fbf17ed29255 [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.openjpa.persistence.kernel.common.apps;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "extnlval")
public class ExternalValues {
private boolean booleanToShort;
private byte byteToDouble;
private int intToFloat;
private long longToChar;
private short shortToString;
private float floatToBoolean;
private double doubleToByte;
private char charToInt;
@Column(length = 50)
private String stringToLong;
@Id
private int id;
public ExternalValues() {
}
public ExternalValues(int id) {
this.id = id;
}
public boolean getBooleanToShort() {
return booleanToShort;
}
public void setBooleanToShort(boolean b) {
booleanToShort = b;
}
public byte getByteToDouble() {
return byteToDouble;
}
public void setByteToDouble(byte b) {
byteToDouble = b;
}
public int getIntToFloat() {
return intToFloat;
}
public void setIntToFloat(int i) {
intToFloat = i;
}
public long getLongToChar() {
return longToChar;
}
public void setLongToChar(long l) {
longToChar = l;
}
public short getShortToString() {
return shortToString;
}
public void setShortToString(short s) {
shortToString = s;
}
public double getDoubleToByte() {
return doubleToByte;
}
public void setDoubleToByte(double d) {
doubleToByte = d;
}
public float getFloatToBoolean() {
return floatToBoolean;
}
public void setFloatToBoolean(float f) {
floatToBoolean = f;
}
public char getCharToInt() {
return charToInt;
}
public void setCharToInt(char c) {
charToInt = c;
}
public String getStringToLong() {
return stringToLong;
}
public void setStringToLong(String s) {
stringToLong = s;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}