org.apache.olingo.odata2.api.uri.info.GetEntityUriInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-v2-lib Show documentation
Show all versions of odata-v2-lib Show documentation
Repackaged OData V2 Olingo Library
/*******************************************************************************
* 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.odata2.api.uri.info;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.olingo.odata2.api.edm.EdmEntityContainer;
import org.apache.olingo.odata2.api.edm.EdmEntitySet;
import org.apache.olingo.odata2.api.edm.EdmFunctionImport;
import org.apache.olingo.odata2.api.edm.EdmLiteral;
import org.apache.olingo.odata2.api.edm.EdmType;
import org.apache.olingo.odata2.api.uri.KeyPredicate;
import org.apache.olingo.odata2.api.uri.NavigationPropertySegment;
import org.apache.olingo.odata2.api.uri.NavigationSegment;
import org.apache.olingo.odata2.api.uri.SelectItem;
import org.apache.olingo.odata2.api.uri.expression.FilterExpression;
/**
* Access to the parts of the request URI that are relevant for GET requests
* of a single entity.
* @org.apache.olingo.odata2.DoNotImplement
*
*/
public interface GetEntityUriInfo {
/**
* Gets the target entity container.
* @return {@link EdmEntityContainer} the target entity container
*/
public EdmEntityContainer getEntityContainer();
/**
* Gets the start entity set - identical to the target entity set if no navigation
* has been used.
* @return {@link EdmEntitySet}
*/
public EdmEntitySet getStartEntitySet();
/**
* Gets the target entity set after navigation.
* @return {@link EdmEntitySet} target entity set
*/
public EdmEntitySet getTargetEntitySet();
/**
* Gets the function import.
* @return {@link EdmFunctionImport} the function import
*/
public EdmFunctionImport getFunctionImport();
/**
* Gets the target entity type of the request.
* @return {@link EdmType} the target type
*/
public EdmType getTargetType();
/**
* Gets the key predicates used to select a single entity out of the start entity set,
* or an empty list if not used.
* @return List of {@link KeyPredicate}
* @see #getStartEntitySet()
*/
public List getKeyPredicates();
/**
* Gets the key predicates used to select a single entity out of the target entity set,
* or an empty list if not used - identical to the key predicates from the last entry
* retrieved from {@link #getNavigationSegments()} or, if no navigation has been used,
* to the result of {@link #getKeyPredicates()}.
* @return List of {@link KeyPredicate}
* @see #getTargetEntitySet()
*/
public List getTargetKeyPredicates();
/**
* Gets the navigation segments, or an empty list if no navigation has been used.
* @return List of {@link NavigationSegment}
*/
public List getNavigationSegments();
/**
* Gets the value of the $format system query option.
* @return the format (as set as $format
query parameter) or null
*/
public String getFormat();
/**
* Gets the value of the $filter system query option as root object of the
* expression tree built during URI parsing.
* @return the filter expression or null
*/
public FilterExpression getFilter();
/**
* Gets the value of the $expand system query option as a list of
* lists of navigation-property segments, or an empty list if not used.
* @return List of a list of {@link NavigationPropertySegment} to be expanded
*/
public List> getExpand();
/**
* Gets the value of the $select system query option as a list of select items,
* or an empty list if not used.
* @return List of {@link SelectItem} to be selected
*/
public List getSelect();
/**
* Gets the parameters of a function import as Map from parameter names to
* their corresponding typed values, or an empty list if no function import
* is used or no parameters are given in the URI.
* @return Map of {@literal } function import parameters
*/
public Map getFunctionImportParameters();
/**
* Gets the custom query options as Map from option names to their
* corresponding String values, or an empty list if no custom query options
* are given in the URI.
* @return Map of {@literal } custom query options
*/
public Map getCustomQueryOptions();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy