blob: 8d4ab1f7b0f9918bca8e5fdad867c53fb0f3ae5b [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.query;
import javax.persistence.*;
@Entity
@Table(name="TORDERITEM")
public class OrderItem {
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
int lid;
int quantity;
double cost;
@ManyToOne (fetch=FetchType.EAGER)
Order order;
@Version
long version;
public OrderItem(){}
public OrderItem( int quantity, double cost, Order o){
this.quantity=quantity;
this.cost=cost;
order = o;
}
public double getCost() {
return cost;
}
public void setCost(double cost) {
this.cost = cost;
}
public int getLid() {
return lid;
}
public void setLid(int lid) {
this.lid = lid;
}
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
public Order getOrder() {
return order;
}
public void setOrder(Order order) {
this.order = order;
}
}