blob: ef403d829cf313892ac0b2d1dfb657d9f1acf3e9 [file] [log] [blame]
/*
* Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
/*
* DeliveryService.java
*
* Created on February 23, 2005, 8:38 PM
*/
package com.acme;
import java.util.Collection;
import jakarta.persistence.*;
import static jakarta.persistence.GeneratorType.*;
import static jakarta.persistence.AccessType.*;
/**
*
* @author ss141213
*/
@Entity
public class DeliveryService {
private String serviceName;
private int priceCategory;
private Collection customers;
@Id public String getServiceName() {
return serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
@Basic public int getPriceCategory() {
return priceCategory;
}
public void setPriceCategory(int priceCategory) {
this.priceCategory = priceCategory;
}
@ManyToMany(targetEntity="com.acme.Customer")
@AssociationTable(table=@Table(schema="TEST1"))
public Collection getCustomers() {
return customers;
}
public void setCustomers(Collection customers) {
this.customers = customers;
}
}