blob: e03890c140c531dd4001e05e556da14d0cc4de0b [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.olingo.fit.proxy.demo.odatademo.types;
// CHECKSTYLE:OFF (Maven checkstyle)
import org.apache.olingo.ext.proxy.api.annotations.Key;
// CHECKSTYLE:ON (Maven checkstyle)
public interface ProductComposableInvoker
extends org.apache.olingo.ext.proxy.api.StructuredComposableInvoker<Product, Product.Operations>
{
@Override
ProductComposableInvoker select(String... select);
@Override
ProductComposableInvoker expand(String... expand);
@Key
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "ID",
type = "Edm.Int32",
nullable = false,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.Integer getID();
void setID(java.lang.Integer _iD);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "Name",
type = "Edm.String",
nullable = true,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.String getName();
void setName(java.lang.String _name);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "Description",
type = "Edm.String",
nullable = true,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.String getDescription();
void setDescription(java.lang.String _description);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "ReleaseDate",
type = "Edm.DateTimeOffset",
nullable = false,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.sql.Timestamp getReleaseDate();
void setReleaseDate(java.sql.Timestamp _releaseDate);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "DiscontinuedDate",
type = "Edm.DateTimeOffset",
nullable = true,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.sql.Timestamp getDiscontinuedDate();
void setDiscontinuedDate(java.sql.Timestamp _discontinuedDate);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "Rating",
type = "Edm.Int16",
nullable = false,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.Short getRating();
void setRating(java.lang.Short _rating);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "Price",
type = "Edm.Double",
nullable = false,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.Double getPrice();
void setPrice(java.lang.Double _price);
@org.apache.olingo.ext.proxy.api.annotations.NavigationProperty(name = "Categories",
type = "ODataDemo.Category",
targetSchema = "ODataDemo",
targetContainer = "DemoService",
targetEntitySet = "Categories",
containsTarget = false)
CategoryCollection getCategories();
void setCategories(CategoryCollection _categories);
@org.apache.olingo.ext.proxy.api.annotations.NavigationProperty(name = "Supplier",
type = "ODataDemo.Supplier",
targetSchema = "ODataDemo",
targetContainer = "DemoService",
targetEntitySet = "Suppliers",
containsTarget = false)
Supplier getSupplier();
void setSupplier(Supplier _supplier);
@org.apache.olingo.ext.proxy.api.annotations.NavigationProperty(name = "ProductDetail",
type = "ODataDemo.ProductDetail",
targetSchema = "ODataDemo",
targetContainer = "DemoService",
targetEntitySet = "ProductDetails",
containsTarget = false)
ProductDetail getProductDetail();
void setProductDetail(ProductDetail _productDetail);
}