[OLINGO-192] rename java packages

This commit is contained in:
Stephan Klevenz 2014-03-10 09:58:41 +01:00
parent 1f253641ab
commit 897db8ef11
770 changed files with 3680 additions and 3279 deletions

View File

@ -16,16 +16,17 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
import org.apache.olingo.client.api.format.ODataFormat;
import org.apache.olingo.client.api.format.ODataMediaFormat;
import org.apache.olingo.client.api.format.ODataPubFormat;
import org.apache.olingo.client.api.format.ODataValueFormat;
import org.apache.olingo.client.api.http.HttpClientFactory;
import org.apache.olingo.client.api.http.HttpUriRequestFactory;
import org.apache.olingo.odata4.client.api.http.HttpUriRequestFactory;
import org.apache.olingo.odata4.client.api.http.HttpClientFactory;
import java.io.Serializable; import java.io.Serializable;
import java.util.concurrent.ExecutorService; import java.util.concurrent.ExecutorService;
import org.apache.olingo.odata4.client.api.format.ODataFormat;
import org.apache.olingo.odata4.client.api.format.ODataMediaFormat;
import org.apache.olingo.odata4.client.api.format.ODataPubFormat;
import org.apache.olingo.odata4.client.api.format.ODataValueFormat;
/** /**
* Configuration wrapper. * Configuration wrapper.

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
import javax.xml.XMLConstants; import javax.xml.XMLConstants;

View File

@ -16,15 +16,15 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
import org.apache.olingo.odata4.client.api.op.ODataBinder; import org.apache.olingo.client.api.op.ODataBinder;
import org.apache.olingo.odata4.client.api.op.ODataDeserializer; import org.apache.olingo.client.api.op.ODataDeserializer;
import org.apache.olingo.odata4.client.api.op.ODataReader; import org.apache.olingo.client.api.op.ODataReader;
import org.apache.olingo.odata4.client.api.op.ODataSerializer; import org.apache.olingo.client.api.op.ODataSerializer;
import org.apache.olingo.odata4.client.api.uri.URIBuilder; import org.apache.olingo.client.api.uri.URIBuilder;
import org.apache.olingo.odata4.client.api.uri.filter.FilterFactory; import org.apache.olingo.client.api.uri.filter.FilterFactory;
import org.apache.olingo.odata4.commons.api.edm.constants.ODataServiceVersion; import org.apache.olingo.commons.api.edm.constants.ODataServiceVersion;
public interface ODataClient { public interface ODataClient {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
import javax.xml.XMLConstants; import javax.xml.XMLConstants;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
/** /**
* OData error. * OData error.

View File

@ -16,11 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
import org.apache.olingo.odata4.client.api.op.ODataV3Deserializer; import org.apache.olingo.client.api.op.ODataV3Deserializer;
import org.apache.olingo.odata4.client.api.uri.V3URIBuilder; import org.apache.olingo.client.api.uri.V3URIBuilder;
import org.apache.olingo.odata4.client.api.uri.filter.V3FilterFactory; import org.apache.olingo.client.api.uri.filter.V3FilterFactory;
public interface ODataV3Client extends ODataClient { public interface ODataV3Client extends ODataClient {

View File

@ -16,11 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
import org.apache.olingo.odata4.client.api.op.ODataV4Deserializer; import org.apache.olingo.client.api.op.ODataV4Deserializer;
import org.apache.olingo.odata4.client.api.uri.V4URIBuilder; import org.apache.olingo.client.api.uri.V4URIBuilder;
import org.apache.olingo.odata4.client.api.uri.filter.V4FilterFactory; import org.apache.olingo.client.api.uri.filter.V4FilterFactory;
public interface ODataV4Client extends ODataClient { public interface ODataV4Client extends ODataClient {

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
import org.apache.olingo.odata4.commons.api.edm.EdmException; import org.apache.olingo.commons.api.edm.EdmException;
public class UnsupportedInV3Exception extends EdmException { public class UnsupportedInV3Exception extends EdmException {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
public interface V3Configuration extends Configuration { public interface V3Configuration extends Configuration {

View File

@ -17,7 +17,7 @@
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api; package org.apache.olingo.client.api;
public interface V4Configuration extends Configuration { public interface V4Configuration extends Configuration {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.data; package org.apache.olingo.client.api.data;
import java.net.URI; import java.net.URI;
import java.util.List; import java.util.List;
@ -24,7 +24,7 @@ import java.util.List;
/** /**
* REST resource for an <tt>ODataServiceDocument</tt>. * REST resource for an <tt>ODataServiceDocument</tt>.
* *
* @see org.apache.olingo.odata4.client.api.domain.ODataServiceDocument * @see org.apache.olingo.client.api.domain.ODataServiceDocument
*/ */
public interface ServiceDocument { public interface ServiceDocument {

View File

@ -17,7 +17,7 @@
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.data; package org.apache.olingo.client.api.data;
public interface ServiceDocumentItem { public interface ServiceDocumentItem {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
public interface AnnotationProperty extends Property { public interface AnnotationProperty extends Property {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
public class ClientException extends Exception { public class ClientException extends Exception {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
public interface NavigationProperty extends Property { public interface NavigationProperty extends Property {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
public interface Property { public interface Property {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
import java.io.InputStream; import java.io.InputStream;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.deserializer; package org.apache.olingo.client.api.deserializer;
public interface Value { public interface Value {

View File

@ -16,20 +16,21 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.net.URI; import java.net.URI;
import java.util.UUID; import java.util.UUID;
import org.apache.olingo.odata4.client.api.domain.geospatial.Geospatial;
import org.apache.olingo.odata4.client.api.domain.geospatial.GeospatialCollection; import org.apache.olingo.client.api.domain.geospatial.Geospatial;
import org.apache.olingo.odata4.client.api.domain.geospatial.LineString; import org.apache.olingo.client.api.domain.geospatial.GeospatialCollection;
import org.apache.olingo.odata4.client.api.domain.geospatial.MultiLineString; import org.apache.olingo.client.api.domain.geospatial.LineString;
import org.apache.olingo.odata4.client.api.domain.geospatial.MultiPoint; import org.apache.olingo.client.api.domain.geospatial.MultiLineString;
import org.apache.olingo.odata4.client.api.domain.geospatial.MultiPolygon; import org.apache.olingo.client.api.domain.geospatial.MultiPoint;
import org.apache.olingo.odata4.client.api.domain.geospatial.Point; import org.apache.olingo.client.api.domain.geospatial.MultiPolygon;
import org.apache.olingo.odata4.client.api.domain.geospatial.Polygon; import org.apache.olingo.client.api.domain.geospatial.Point;
import org.apache.olingo.odata4.commons.api.edm.constants.ODataServiceVersion; import org.apache.olingo.client.api.domain.geospatial.Polygon;
import org.apache.olingo.commons.api.edm.constants.ODataServiceVersion;
/** /**
* Represent the primitive types of the Entity Data Model (EDM). * Represent the primitive types of the Entity Data Model (EDM).

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.util.Iterator; import java.util.Iterator;
import java.util.LinkedHashMap; import java.util.LinkedHashMap;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.io.Serializable; import java.io.Serializable;
import javax.xml.datatype.DatatypeConfigurationException; import javax.xml.datatype.DatatypeConfigurationException;

View File

@ -16,26 +16,28 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.io.StringWriter; import java.io.StringWriter;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.ParserConfigurationException;
import org.apache.olingo.odata4.client.api.Constants;
import org.apache.olingo.odata4.client.api.ODataClient; import org.apache.olingo.client.api.Constants;
import org.apache.olingo.odata4.client.api.domain.geospatial.Geospatial; import org.apache.olingo.client.api.ODataClient;
import org.apache.olingo.odata4.client.api.domain.geospatial.GeospatialCollection; import org.apache.olingo.client.api.domain.geospatial.Geospatial;
import org.apache.olingo.odata4.client.api.domain.geospatial.LineString; import org.apache.olingo.client.api.domain.geospatial.GeospatialCollection;
import org.apache.olingo.odata4.client.api.domain.geospatial.MultiLineString; import org.apache.olingo.client.api.domain.geospatial.LineString;
import org.apache.olingo.odata4.client.api.domain.geospatial.MultiPoint; import org.apache.olingo.client.api.domain.geospatial.MultiLineString;
import org.apache.olingo.odata4.client.api.domain.geospatial.MultiPolygon; import org.apache.olingo.client.api.domain.geospatial.MultiPoint;
import org.apache.olingo.odata4.client.api.domain.geospatial.Point; import org.apache.olingo.client.api.domain.geospatial.MultiPolygon;
import org.apache.olingo.odata4.client.api.domain.geospatial.Polygon; import org.apache.olingo.client.api.domain.geospatial.Point;
import org.apache.olingo.odata4.client.api.utils.XMLUtils; import org.apache.olingo.client.api.domain.geospatial.Polygon;
import org.apache.olingo.client.api.utils.XMLUtils;
import org.w3c.dom.Document; import org.w3c.dom.Document;
import org.w3c.dom.Element; import org.w3c.dom.Element;
import org.w3c.dom.Node; import org.w3c.dom.Node;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
/** /**
* Marker interface for any OData domain object that can be returned by an operation invocation. * Marker interface for any OData domain object that can be returned by an operation invocation.

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.net.URI; import java.net.URI;
@ -24,15 +24,17 @@ import java.sql.Timestamp;
import java.text.DecimalFormat; import java.text.DecimalFormat;
import java.util.Date; import java.util.Date;
import java.util.UUID; import java.util.UUID;
import javax.xml.datatype.Duration; import javax.xml.datatype.Duration;
import org.apache.commons.codec.binary.Base64; import org.apache.commons.codec.binary.Base64;
import org.apache.commons.lang3.ArrayUtils; import org.apache.commons.lang3.ArrayUtils;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.olingo.odata4.client.api.ODataClient; import org.apache.olingo.client.api.ODataClient;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType; import org.apache.olingo.client.api.domain.EdmSimpleType;
import org.apache.olingo.odata4.client.api.domain.ODataDuration; import org.apache.olingo.client.api.domain.ODataDuration;
import org.apache.olingo.odata4.client.api.domain.ODataTimestamp; import org.apache.olingo.client.api.domain.ODataTimestamp;
import org.apache.olingo.odata4.client.api.domain.ODataValue; import org.apache.olingo.client.api.domain.ODataValue;
/** /**
* OData primitive property value. * OData primitive property value.

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.io.Serializable; import java.io.Serializable;
import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.EqualsBuilder;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.net.URI; import java.net.URI;
import java.util.Collection; import java.util.Collection;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.io.Serializable; import java.io.Serializable;
import java.sql.Timestamp; import java.sql.Timestamp;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain; package org.apache.olingo.client.api.domain;
import java.io.Serializable; import java.io.Serializable;
import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.EqualsBuilder;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;

View File

@ -16,14 +16,15 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.io.Serializable; import java.io.Serializable;
import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder; import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle; import org.apache.commons.lang3.builder.ToStringStyle;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType; import org.apache.olingo.client.api.domain.EdmSimpleType;
/** /**
* Base class for all geospatial info. * Base class for all geospatial info.

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType;
import org.apache.olingo.client.api.domain.EdmSimpleType;
/** /**
* Wrapper for a collection of geospatials info. * Wrapper for a collection of geospatials info.

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType;
import org.apache.olingo.client.api.domain.EdmSimpleType;
public class LineString extends ComposedGeospatial<Point> { public class LineString extends ComposedGeospatial<Point> {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType;
import org.apache.olingo.client.api.domain.EdmSimpleType;
public class MultiLineString extends ComposedGeospatial<LineString> { public class MultiLineString extends ComposedGeospatial<LineString> {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType;
import org.apache.olingo.client.api.domain.EdmSimpleType;
public class MultiPoint extends ComposedGeospatial<Point> { public class MultiPoint extends ComposedGeospatial<Point> {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType;
import org.apache.olingo.client.api.domain.EdmSimpleType;
public class MultiPolygon extends ComposedGeospatial<Polygon> { public class MultiPolygon extends ComposedGeospatial<Polygon> {

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType; import org.apache.olingo.client.api.domain.EdmSimpleType;
public class Point extends Geospatial { public class Point extends Geospatial {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.domain.geospatial; package org.apache.olingo.client.api.domain.geospatial;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.domain.EdmSimpleType;
import org.apache.olingo.client.api.domain.EdmSimpleType;
/** /**
* Polygon. * Polygon.

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public abstract interface CommonAnnotations { public abstract interface CommonAnnotations {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface CommonFunctionImport extends Named { public interface CommonFunctionImport extends Named {
} }

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface CommonNavigationProperty extends Named { public interface CommonNavigationProperty extends Named {
} }

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface CommonParameter extends Named { public interface CommonParameter extends Named {

View File

@ -16,10 +16,10 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import org.apache.olingo.odata4.commons.api.edm.constants.ConcurrencyMode; import org.apache.olingo.commons.api.edm.constants.ConcurrencyMode;
import org.apache.olingo.odata4.commons.api.edm.constants.StoreGeneratedPattern; import org.apache.olingo.commons.api.edm.constants.StoreGeneratedPattern;
public interface CommonProperty extends Named { public interface CommonProperty extends Named {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface Edmx { public interface Edmx {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface EntitySet extends Named { public interface EntitySet extends Named {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface EntityType extends ComplexType { public interface EntityType extends ComplexType {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface Member { public interface Member {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface Named { public interface Named {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface OnDelete { public interface OnDelete {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public enum OnDeleteAction { public enum OnDeleteAction {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
public interface PropertyRef extends Named { public interface PropertyRef extends Named {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml; package org.apache.olingo.client.api.edm.xml;
import java.util.List; import java.util.List;

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.edm.xml.CommonAnnotations;
import org.apache.olingo.client.api.edm.xml.CommonAnnotations;
public interface Annotations extends CommonAnnotations { public interface Annotations extends CommonAnnotations {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.edm.xml.Named;
import org.apache.olingo.client.api.edm.xml.Named;
public interface Association extends Named { public interface Association extends Named {

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import org.apache.olingo.odata4.client.api.edm.xml.OnDelete; import org.apache.olingo.client.api.edm.xml.OnDelete;
public interface AssociationEnd { public interface AssociationEnd {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.edm.xml.Named;
import org.apache.olingo.client.api.edm.xml.Named;
public interface AssociationSet extends Named { public interface AssociationSet extends Named {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
public interface AssociationSetEnd { public interface AssociationSetEnd {

View File

@ -16,11 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.util.List; import java.util.List;
public interface FunctionImport extends org.apache.olingo.odata4.client.api.edm.xml.CommonFunctionImport { public interface FunctionImport extends org.apache.olingo.client.api.edm.xml.CommonFunctionImport {
String getReturnType(); String getReturnType();

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
public interface NavigationProperty extends org.apache.olingo.odata4.client.api.edm.xml.CommonNavigationProperty { public interface NavigationProperty extends org.apache.olingo.client.api.edm.xml.CommonNavigationProperty {
String getRelationship(); String getRelationship();

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
public interface Parameter extends org.apache.olingo.odata4.client.api.edm.xml.CommonParameter { public interface Parameter extends org.apache.olingo.client.api.edm.xml.CommonParameter {
ParameterMode getMode(); ParameterMode getMode();
} }

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
public enum ParameterMode { public enum ParameterMode {

View File

@ -16,10 +16,10 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import org.apache.olingo.odata4.client.api.edm.xml.CommonProperty; import org.apache.olingo.client.api.edm.xml.CommonProperty;
import org.apache.olingo.odata4.commons.api.edm.constants.EdmContentKind; import org.apache.olingo.commons.api.edm.constants.EdmContentKind;
public interface Property extends CommonProperty { public interface Property extends CommonProperty {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.math.BigInteger; import java.math.BigInteger;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
public interface ReferentialConstraint { public interface ReferentialConstraint {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.edm.xml.PropertyRef;
import org.apache.olingo.client.api.edm.xml.PropertyRef;
public interface ReferentialConstraintRole { public interface ReferentialConstraintRole {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.util.List; import java.util.List;

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
public interface Using { public interface Using {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.math.BigInteger; import java.math.BigInteger;

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v3; package org.apache.olingo.client.api.edm.xml.v3;
import org.apache.olingo.odata4.client.api.edm.xml.Named; import org.apache.olingo.client.api.edm.xml.Named;
public interface ValueTerm extends Named { public interface ValueTerm extends Named {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.edm.xml.Named;
import org.apache.olingo.client.api.edm.xml.Named;
public interface Action extends Named { public interface Action extends Named {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface ActionImport extends OperationImport { public interface ActionImport extends OperationImport {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface AnnotatedEdmItem { public interface AnnotatedEdmItem {

View File

@ -16,10 +16,10 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import org.apache.olingo.odata4.client.api.edm.xml.v4.annotation.ConstExprConstruct; import org.apache.olingo.client.api.edm.xml.v4.annotation.ConstExprConstruct;
import org.apache.olingo.odata4.client.api.edm.xml.v4.annotation.DynExprConstruct; import org.apache.olingo.client.api.edm.xml.v4.annotation.DynExprConstruct;
public interface Annotation { public interface Annotation {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.edm.xml.CommonAnnotations;
import org.apache.olingo.client.api.edm.xml.CommonAnnotations;
public interface Annotations extends CommonAnnotations { public interface Annotations extends CommonAnnotations {

View File

@ -16,10 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.client.api.edm.xml.Named;
import org.apache.olingo.client.api.edm.xml.Named;
public interface BindingTarget extends Named, AnnotatedEdmItem { public interface BindingTarget extends Named, AnnotatedEdmItem {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public enum CSDLElement { public enum CSDLElement {

View File

@ -16,11 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import java.util.List; import java.util.List;
public interface ComplexType extends org.apache.olingo.odata4.client.api.edm.xml.ComplexType, AnnotatedEdmItem { public interface ComplexType extends org.apache.olingo.client.api.edm.xml.ComplexType, AnnotatedEdmItem {
boolean isAbstractEntityType(); boolean isAbstractEntityType();

View File

@ -16,11 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import java.util.List; import java.util.List;
public interface Edmx extends org.apache.olingo.odata4.client.api.edm.xml.Edmx { public interface Edmx extends org.apache.olingo.client.api.edm.xml.Edmx {
List<Reference> getReferences(); List<Reference> getReferences();
} }

View File

@ -16,11 +16,11 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import java.util.List; import java.util.List;
public interface EntityContainer extends org.apache.olingo.odata4.client.api.edm.xml.EntityContainer { public interface EntityContainer extends org.apache.olingo.client.api.edm.xml.EntityContainer {
EntitySet getEntitySet(String name); EntitySet getEntitySet(String name);

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface EntitySet extends org.apache.olingo.odata4.client.api.edm.xml.EntitySet, BindingTarget { public interface EntitySet extends org.apache.olingo.client.api.edm.xml.EntitySet, BindingTarget {
boolean isIncludeInServiceDocument(); boolean isIncludeInServiceDocument();
} }

View File

@ -0,0 +1,23 @@
/*
* 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.client.api.edm.xml.v4;
public interface EntityType extends org.apache.olingo.client.api.edm.xml.EntityType, ComplexType {
}

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface Function extends Action { public interface Function extends Action {

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import org.apache.olingo.odata4.client.api.edm.xml.CommonFunctionImport; import org.apache.olingo.client.api.edm.xml.CommonFunctionImport;
public interface FunctionImport extends OperationImport, CommonFunctionImport { public interface FunctionImport extends OperationImport, CommonFunctionImport {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface Include { public interface Include {

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface IncludeAnnotations { public interface IncludeAnnotations {

View File

@ -16,13 +16,14 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import org.apache.olingo.client.api.edm.xml.OnDelete;
import org.apache.olingo.odata4.client.api.edm.xml.OnDelete;
import java.util.List; import java.util.List;
public interface NavigationProperty public interface NavigationProperty
extends org.apache.olingo.odata4.client.api.edm.xml.CommonNavigationProperty, AnnotatedEdmItem { extends org.apache.olingo.client.api.edm.xml.CommonNavigationProperty, AnnotatedEdmItem {
String getType(); String getType();

View File

@ -16,7 +16,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface NavigationPropertyBinding { public interface NavigationPropertyBinding {

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import org.apache.olingo.odata4.client.api.edm.xml.Named; import org.apache.olingo.client.api.edm.xml.Named;
public interface OperationImport extends Named, AnnotatedEdmItem { public interface OperationImport extends Named, AnnotatedEdmItem {

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
public interface Parameter extends org.apache.olingo.odata4.client.api.edm.xml.CommonParameter { public interface Parameter extends org.apache.olingo.client.api.edm.xml.CommonParameter {
String getSrid(); String getSrid();
} }

View File

@ -16,9 +16,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
*/ */
package org.apache.olingo.odata4.client.api.edm.xml.v4; package org.apache.olingo.client.api.edm.xml.v4;
import org.apache.olingo.odata4.client.api.edm.xml.CommonProperty; import org.apache.olingo.client.api.edm.xml.CommonProperty;
public interface Property extends CommonProperty, AnnotatedEdmItem { public interface Property extends CommonProperty, AnnotatedEdmItem {

Some files were not shown because too many files have changed in this diff Show More