blob: 0045fc9a5b684c434e7b872cbac82e2b34cc78b2 [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.staticservice.odatawcfservice.types;
// CHECKSTYLE:OFF (Maven checkstyle)
import org.apache.olingo.ext.proxy.api.annotations.Key;
// CHECKSTYLE:ON (Maven checkstyle)
public interface ProductDetailComposableInvoker
extends org.apache.olingo.ext.proxy.api.StructuredComposableInvoker<ProductDetail, ProductDetail.Operations>
{
@Override
ProductDetailComposableInvoker select(String... select);
@Override
ProductDetailComposableInvoker expand(String... expand);
@Key
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "ProductID",
type = "Edm.Int32",
nullable = false,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.Integer getProductID();
void setProductID(java.lang.Integer _productID);
@Key
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "ProductDetailID",
type = "Edm.Int32",
nullable = false,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.Integer getProductDetailID();
void setProductDetailID(java.lang.Integer _productDetailID);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "ProductName",
type = "Edm.String",
nullable = false,
defaultValue = "",
maxLenght = Integer.MAX_VALUE,
fixedLenght = false,
precision = 0,
scale = 0,
unicode = true,
collation = "",
srid = "")
java.lang.String getProductName();
void setProductName(java.lang.String _productName);
@org.apache.olingo.ext.proxy.api.annotations.Property(name = "Description",
type = "Edm.String",
nullable = false,
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.NavigationProperty(name = "RelatedProduct",
type = "Microsoft.Test.OData.Services.ODataWCFService.Product",
targetSchema = "Microsoft.Test.OData.Services.ODataWCFService",
targetContainer = "InMemoryEntities",
targetEntitySet = "Products",
containsTarget = false)
Product
getRelatedProduct();
void
setRelatedProduct(
Product _relatedProduct);
@org.apache.olingo.ext.proxy.api.annotations.NavigationProperty(name = "Reviews",
type = "Microsoft.Test.OData.Services.ODataWCFService.ProductReview",
targetSchema = "Microsoft.Test.OData.Services.ODataWCFService",
targetContainer = "InMemoryEntities",
targetEntitySet = "ProductReviews",
containsTarget = false)
ProductReviewCollection
getReviews();
void
setReviews(
ProductReviewCollection _reviews);
}