/******************************************************************************* * 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. ******************************************************************************/ #set( $symbol_pound = '#' ) #set( $symbol_dollar = '$' ) #set( $symbol_escape = '\' ) package ${package}.model; import java.util.Date; import org.apache.olingo.odata2.api.annotation.edm.EdmEntitySet; import org.apache.olingo.odata2.api.annotation.edm.EdmEntityType; import org.apache.olingo.odata2.api.annotation.edm.EdmKey; import org.apache.olingo.odata2.api.annotation.edm.EdmNavigationProperty; import org.apache.olingo.odata2.api.annotation.edm.EdmProperty; /** * */ @EdmEntityType(namespace = "MyFormula") @EdmEntitySet(name = "Cars") public class Car { @EdmKey @EdmProperty private String id; @EdmProperty private String model; @EdmNavigationProperty private Manufacturer manufacturer; @EdmNavigationProperty private Driver driver; @EdmProperty private Double price; @EdmProperty private Integer modelYear; @EdmProperty private Date updated; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getModel() { return model; } public void setModel(String model) { this.model = model; } public Manufacturer getManufacturer() { return manufacturer; } public void setManufacturer(Manufacturer manufacturer) { this.manufacturer = manufacturer; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public int getModelYear() { return modelYear; } public void setModelYear(int modelYear) { this.modelYear = modelYear; } public Date getUpdated() { return updated; } public void setUpdated(Date updated) { this.updated = updated; } public Driver getDriver() { return driver; } public void setDriver(Driver driver) { this.driver = driver; } @Override public String toString() { return "Car{" + "id=" + id + ", model=" + model + ", manufacturer id=" + manufacturer.getId() + ", driver id=" + driver.getId() + ", price=" + price + ", modelYear=" + modelYear + ", updated=" + updated + '}'; } }