[OLINGO-161] Refactored Java package names

This commit is contained in:
Christian Amend 2014-02-17 16:44:32 +01:00
parent c49ff80339
commit 9593b53cc8
185 changed files with 802 additions and 748 deletions

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.consumer.api; package org.apache.olingo.odata4.client.api;
import org.apache.olingo.odata4.commons.api.edm.Edm; import org.apache.olingo.odata4.commons.api.edm.Edm;
import org.apache.olingo.odata4.commons.api.edm.provider.EdmProvider; import org.apache.olingo.odata4.commons.api.edm.provider.EdmProvider;
@ -24,7 +24,7 @@ import org.apache.olingo.odata4.commons.api.edm.provider.EdmProvider;
//TODO: Exceptionhandling //TODO: Exceptionhandling
public abstract class ODataConsumer { public abstract class ODataConsumer {
private static final String IMPLEMENTATION = "org.apache.olingo.odata4.consumer.core.ODataConsumerImpl"; private static final String IMPLEMENTATION = "org.apache.olingo.odata4.client.core.ODataConsumerImpl";
public static ODataConsumer create() { public static ODataConsumer create() {
ODataConsumer instance; ODataConsumer instance;

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.consumer.api.deserializer; package org.apache.olingo.odata4.client.api.deserializer;
public interface AnnotationProperty extends Property { public interface AnnotationProperty extends Property {
String getValue(); String getValue();

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.consumer.api.deserializer; package org.apache.olingo.odata4.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.consumer.api.deserializer; package org.apache.olingo.odata4.client.api.deserializer;
public class ConsumerException extends Exception { public class ConsumerException 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.consumer.api.deserializer; package org.apache.olingo.odata4.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.consumer.api.deserializer; package org.apache.olingo.odata4.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.consumer.api.deserializer; package org.apache.olingo.odata4.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.consumer.api.deserializer; package org.apache.olingo.odata4.client.api.deserializer;
public interface Property { public interface Property {
String getName(); String getName();

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.consumer.api.deserializer; package org.apache.olingo.odata4.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.consumer.api.deserializer; package org.apache.olingo.odata4.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.consumer.api.deserializer; package org.apache.olingo.odata4.client.api.deserializer;
public interface Value { public interface Value {
boolean isComplex(); boolean isComplex();

View File

@ -16,12 +16,12 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.consumer.core; package org.apache.olingo.odata4.client.core;
import org.apache.olingo.odata4.client.api.ODataConsumer;
import org.apache.olingo.odata4.commons.api.edm.Edm; import org.apache.olingo.odata4.commons.api.edm.Edm;
import org.apache.olingo.odata4.commons.api.edm.provider.EdmProvider; import org.apache.olingo.odata4.commons.api.edm.provider.EdmProvider;
import org.apache.olingo.odata4.commons.core.ODataCommonsCoreImpl; import org.apache.olingo.odata4.commons.core.ODataCommonsCoreImpl;
import org.apache.olingo.odata4.consumer.api.ODataConsumer;
public class ODataConsumerImpl extends ODataConsumer { public class ODataConsumerImpl extends ODataConsumer {

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import org.apache.olingo.odata4.consumer.api.deserializer.AnnotationProperty; import org.apache.olingo.odata4.client.api.deserializer.AnnotationProperty;
public class AnnotationPropertyImpl implements AnnotationProperty { public class AnnotationPropertyImpl implements AnnotationProperty {

View File

@ -16,16 +16,16 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.util.Collections; import java.util.Collections;
import java.util.Map; import java.util.Map;
import org.apache.olingo.odata4.consumer.api.deserializer.AnnotationProperty; import org.apache.olingo.odata4.client.api.deserializer.AnnotationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.ComplexValue; import org.apache.olingo.odata4.client.api.deserializer.ComplexValue;
import org.apache.olingo.odata4.consumer.api.deserializer.NavigationProperty; import org.apache.olingo.odata4.client.api.deserializer.NavigationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Value; import org.apache.olingo.odata4.client.api.deserializer.Value;
public class ComplexValueImpl extends PropertyCollection implements ComplexValue { public class ComplexValueImpl extends PropertyCollection implements ComplexValue {

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.util.Map; import java.util.Map;
import org.apache.olingo.odata4.consumer.api.deserializer.AnnotationProperty; import org.apache.olingo.odata4.client.api.deserializer.AnnotationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Entity; import org.apache.olingo.odata4.client.api.deserializer.Entity;
import org.apache.olingo.odata4.consumer.api.deserializer.NavigationProperty; import org.apache.olingo.odata4.client.api.deserializer.NavigationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Property; import org.apache.olingo.odata4.client.api.deserializer.Property;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
public class EntityImpl extends PropertyCollection implements Entity { public class EntityImpl extends PropertyCollection implements Entity {

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.io.IOException; import java.io.IOException;
import org.apache.olingo.odata4.consumer.api.deserializer.EntitySet; import org.apache.olingo.odata4.client.api.deserializer.EntitySet;
import com.fasterxml.jackson.core.JsonParseException; import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonParser; import com.fasterxml.jackson.core.JsonParser;

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.consumer.api.deserializer.Entity; import org.apache.olingo.odata4.client.api.deserializer.Entity;
import org.apache.olingo.odata4.consumer.api.deserializer.EntitySet; import org.apache.olingo.odata4.client.api.deserializer.EntitySet;
import com.fasterxml.jackson.core.JsonParseException; import com.fasterxml.jackson.core.JsonParseException;

View File

@ -16,18 +16,18 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.util.Map; import java.util.Map;
import org.apache.olingo.odata4.consumer.api.deserializer.ConsumerException; import org.apache.olingo.odata4.client.api.deserializer.ConsumerException;
import org.apache.olingo.odata4.consumer.api.deserializer.Entity; import org.apache.olingo.odata4.client.api.deserializer.Entity;
import org.apache.olingo.odata4.consumer.api.deserializer.EntitySet; import org.apache.olingo.odata4.client.api.deserializer.EntitySet;
import org.apache.olingo.odata4.consumer.api.deserializer.Property; import org.apache.olingo.odata4.client.api.deserializer.Property;
import org.apache.olingo.odata4.consumer.api.deserializer.Reader; import org.apache.olingo.odata4.client.api.deserializer.Reader;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
import com.fasterxml.jackson.core.JsonFactory; import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonParseException; import com.fasterxml.jackson.core.JsonParseException;

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import org.apache.olingo.odata4.consumer.api.deserializer.NavigationProperty; import org.apache.olingo.odata4.client.api.deserializer.NavigationProperty;
public class NavigationPropertyImpl implements NavigationProperty { public class NavigationPropertyImpl implements NavigationProperty {

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import org.apache.olingo.odata4.consumer.api.deserializer.Value; import org.apache.olingo.odata4.client.api.deserializer.Value;
public class PrimitiveValue implements Value { public class PrimitiveValue implements 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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
@ -24,10 +24,10 @@ import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import org.apache.olingo.odata4.consumer.api.deserializer.AnnotationProperty; import org.apache.olingo.odata4.client.api.deserializer.AnnotationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.NavigationProperty; import org.apache.olingo.odata4.client.api.deserializer.NavigationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Property; import org.apache.olingo.odata4.client.api.deserializer.Property;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
abstract class PropertyCollection { abstract class PropertyCollection {
protected Map<String, AnnotationProperty> annotationProperties = new HashMap<String, AnnotationProperty>(); protected Map<String, AnnotationProperty> annotationProperties = new HashMap<String, AnnotationProperty>();

View File

@ -16,20 +16,20 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.io.IOException; import java.io.IOException;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.consumer.api.deserializer.AnnotationProperty; import org.apache.olingo.odata4.client.api.deserializer.AnnotationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.ComplexValue; import org.apache.olingo.odata4.client.api.deserializer.ComplexValue;
import org.apache.olingo.odata4.consumer.api.deserializer.Entity; import org.apache.olingo.odata4.client.api.deserializer.Entity;
import org.apache.olingo.odata4.consumer.api.deserializer.NavigationProperty; import org.apache.olingo.odata4.client.api.deserializer.NavigationProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Property; import org.apache.olingo.odata4.client.api.deserializer.Property;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Value; import org.apache.olingo.odata4.client.api.deserializer.Value;
import com.fasterxml.jackson.core.JsonParseException; import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonParser; import com.fasterxml.jackson.core.JsonParser;

View File

@ -16,14 +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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Value; import org.apache.olingo.odata4.client.api.deserializer.Value;
public class StructuralPropertyImpl implements StructuralProperty { public class StructuralPropertyImpl implements StructuralProperty {

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.consumer.core; package org.apache.olingo.odata4.client.core;
import org.apache.olingo.odata4.client.api.ODataConsumer;
import org.apache.olingo.odata4.commons.api.edm.provider.EdmProvider; import org.apache.olingo.odata4.commons.api.edm.provider.EdmProvider;
import org.apache.olingo.odata4.consumer.api.ODataConsumer;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotNull;
@ -25,11 +25,12 @@ import static org.junit.Assert.assertTrue;
import java.io.InputStream; import java.io.InputStream;
import org.apache.olingo.odata4.consumer.api.deserializer.ComplexValue; import org.apache.olingo.odata4.client.api.deserializer.ComplexValue;
import org.apache.olingo.odata4.consumer.api.deserializer.Property; import org.apache.olingo.odata4.client.api.deserializer.Property;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Value; import org.apache.olingo.odata4.client.api.deserializer.Value;
import org.apache.olingo.odata4.consumer.core.testutil.StringHelper; import org.apache.olingo.odata4.client.core.deserializer.JsonReader;
import org.apache.olingo.odata4.client.core.testutil.StringHelper;
import org.junit.Test; import org.junit.Test;
public class JsonReaderPerformance { public class JsonReaderPerformance {

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.consumer.core.deserializer; package org.apache.olingo.odata4.client.core.deserializer;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotNull;
@ -31,13 +31,14 @@ import java.util.List;
import junit.framework.Assert; import junit.framework.Assert;
import org.apache.olingo.odata4.consumer.api.deserializer.ComplexValue; import org.apache.olingo.odata4.client.api.deserializer.ComplexValue;
import org.apache.olingo.odata4.consumer.api.deserializer.Entity; import org.apache.olingo.odata4.client.api.deserializer.Entity;
import org.apache.olingo.odata4.consumer.api.deserializer.EntitySet; import org.apache.olingo.odata4.client.api.deserializer.EntitySet;
import org.apache.olingo.odata4.consumer.api.deserializer.Property; import org.apache.olingo.odata4.client.api.deserializer.Property;
import org.apache.olingo.odata4.consumer.api.deserializer.Reader; import org.apache.olingo.odata4.client.api.deserializer.Reader;
import org.apache.olingo.odata4.consumer.api.deserializer.StructuralProperty; import org.apache.olingo.odata4.client.api.deserializer.StructuralProperty;
import org.apache.olingo.odata4.consumer.api.deserializer.Value; import org.apache.olingo.odata4.client.api.deserializer.Value;
import org.apache.olingo.odata4.client.core.deserializer.JsonReader;
import org.junit.Test; import org.junit.Test;
public class JsonReaderTest { public class JsonReaderTest {

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.consumer.core.testutil; package org.apache.olingo.odata4.client.core.testutil;
import java.io.BufferedReader; import java.io.BufferedReader;
import java.io.ByteArrayInputStream; import java.io.ByteArrayInputStream;

View File

@ -17,7 +17,7 @@
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriInfo extends public interface UriInfo extends
UriInfoService, UriInfoAll, UriInfoBatch, UriInfoCrossjoin, UriInfoService, UriInfoAll, UriInfoBatch, UriInfoCrossjoin,

View File

@ -17,7 +17,7 @@
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriInfoAll { public interface UriInfoAll {

View File

@ -17,7 +17,7 @@
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriInfoBatch { public interface UriInfoBatch {

View File

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

View File

@ -17,16 +17,16 @@
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.commons.api.edm.EdmEntityType; import org.apache.olingo.odata4.commons.api.edm.EdmEntityType;
import org.apache.olingo.odata4.producer.api.uri.queryoption.CustomQueryOption; import org.apache.olingo.odata4.server.api.uri.queryoption.CustomQueryOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.ExpandOption; import org.apache.olingo.odata4.server.api.uri.queryoption.ExpandOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.FormatOption; import org.apache.olingo.odata4.server.api.uri.queryoption.FormatOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.IdOption; import org.apache.olingo.odata4.server.api.uri.queryoption.IdOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.SelectOption; import org.apache.olingo.odata4.server.api.uri.queryoption.SelectOption;
/** /**
* Indicates a URL access to an single Entity * Indicates a URL access to an single Entity

View File

@ -17,7 +17,7 @@
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public enum UriInfoKind { public enum UriInfoKind {
all, batch, crossjoin, entityId, metadata, resource, service; all, batch, crossjoin, entityId, metadata, resource, service;

View File

@ -17,9 +17,9 @@
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.producer.api.uri.queryoption.FormatOption; import org.apache.olingo.odata4.server.api.uri.queryoption.FormatOption;
public interface UriInfoMetadata { public interface UriInfoMetadata {

View File

@ -16,22 +16,22 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.producer.api.uri.queryoption.CustomQueryOption; import org.apache.olingo.odata4.server.api.uri.queryoption.CustomQueryOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.ExpandOption; import org.apache.olingo.odata4.server.api.uri.queryoption.ExpandOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.FilterOption; import org.apache.olingo.odata4.server.api.uri.queryoption.FilterOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.FormatOption; import org.apache.olingo.odata4.server.api.uri.queryoption.FormatOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.IdOption; import org.apache.olingo.odata4.server.api.uri.queryoption.IdOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.InlineCountOption; import org.apache.olingo.odata4.server.api.uri.queryoption.InlineCountOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.OrderByOption; import org.apache.olingo.odata4.server.api.uri.queryoption.OrderByOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.SearchOption; import org.apache.olingo.odata4.server.api.uri.queryoption.SearchOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.SelectOption; import org.apache.olingo.odata4.server.api.uri.queryoption.SelectOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.SkipOption; import org.apache.olingo.odata4.server.api.uri.queryoption.SkipOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.SkipTokenOption; import org.apache.olingo.odata4.server.api.uri.queryoption.SkipTokenOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.TopOption; import org.apache.olingo.odata4.server.api.uri.queryoption.TopOption;
public interface UriInfoResource { public interface UriInfoResource {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriInfoService { public interface UriInfoService {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.producer.api.uri.queryoption.expression.Expression; import org.apache.olingo.odata4.server.api.uri.queryoption.expression.Expression;
public interface UriParameter { public interface UriParameter {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriResource { public interface UriResource {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.commons.api.edm.EdmAction; import org.apache.olingo.odata4.commons.api.edm.EdmAction;
import org.apache.olingo.odata4.commons.api.edm.EdmActionImport; import org.apache.olingo.odata4.commons.api.edm.EdmActionImport;

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.commons.api.edm.EdmComplexType; import org.apache.olingo.odata4.commons.api.edm.EdmComplexType;

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriResourceCount extends UriResource { public interface UriResourceCount extends UriResource {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.commons.api.edm.EdmType; import org.apache.olingo.odata4.commons.api.edm.EdmType;

View File

@ -17,7 +17,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public enum UriResourceKind { public enum UriResourceKind {
action, complexProperty, count, entitySet, function, it, lambdaAll, lambdaAny, action, complexProperty, count, entitySet, function, it, lambdaAll, lambdaAny,

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.producer.api.uri.queryoption.expression.Expression; import org.apache.olingo.odata4.server.api.uri.queryoption.expression.Expression;
public interface UriResourceLambdaAll extends UriResourcePartTyped { public interface UriResourceLambdaAll extends UriResourcePartTyped {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.producer.api.uri.queryoption.expression.Expression; import org.apache.olingo.odata4.server.api.uri.queryoption.expression.Expression;
public interface UriResourceLambdaAny extends UriResourcePartTyped { public interface UriResourceLambdaAny extends UriResourcePartTyped {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriResourceLambdaRef extends UriResourcePartTyped { public interface UriResourceLambdaRef extends UriResourcePartTyped {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import java.util.List; import java.util.List;

View File

@ -17,7 +17,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.commons.api.edm.EdmType; import org.apache.olingo.odata4.commons.api.edm.EdmType;

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriResourcePrimitiveProperty extends UriResourceProperty { public interface UriResourcePrimitiveProperty extends UriResourceProperty {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.commons.api.edm.EdmProperty; import org.apache.olingo.odata4.commons.api.edm.EdmProperty;

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriResourceRef extends UriResource { public interface UriResourceRef extends UriResource {

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
/** /**
* Class indicating the $root reference. $root may be used within filter to * Class indicating the $root reference. $root may be used within filter to

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.commons.api.edm.EdmEntityType; import org.apache.olingo.odata4.commons.api.edm.EdmEntityType;
import org.apache.olingo.odata4.commons.api.edm.EdmSingleton; import org.apache.olingo.odata4.commons.api.edm.EdmSingleton;

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
import org.apache.olingo.odata4.commons.api.edm.EdmType; import org.apache.olingo.odata4.commons.api.edm.EdmType;

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.producer.api.uri; package org.apache.olingo.odata4.server.api.uri;
public interface UriResourceValue extends UriResource { public interface UriResourceValue extends UriResource {

View File

@ -16,17 +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.producer.api.uri.optiontree; package org.apache.olingo.odata4.server.api.uri.optiontree;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.producer.api.uri.UriResourceProperty; import org.apache.olingo.odata4.server.api.uri.UriResourceProperty;
import org.apache.olingo.odata4.producer.api.uri.queryoption.FilterOption; import org.apache.olingo.odata4.server.api.uri.queryoption.FilterOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.InlineCountOption; import org.apache.olingo.odata4.server.api.uri.queryoption.InlineCountOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.OrderByOption; import org.apache.olingo.odata4.server.api.uri.queryoption.OrderByOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.SearchOption; import org.apache.olingo.odata4.server.api.uri.queryoption.SearchOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.SkipOption; import org.apache.olingo.odata4.server.api.uri.queryoption.SkipOption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.TopOption; import org.apache.olingo.odata4.server.api.uri.queryoption.TopOption;
/** /**
* Contains the merged $expand and $select options * Contains the merged $expand and $select options

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.producer.api.uri.optiontree; package org.apache.olingo.odata4.server.api.uri.optiontree;
import org.apache.olingo.odata4.commons.api.edm.EdmNavigationProperty; import org.apache.olingo.odata4.commons.api.edm.EdmNavigationProperty;

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.expression.Expression; import org.apache.olingo.odata4.server.api.uri.queryoption.expression.Expression;
public interface AliasQueryOption extends QueryOption { public interface AliasQueryOption extends QueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface CustomQueryOption extends QueryOption { public interface CustomQueryOption extends QueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public class ExceptionVisitExpand extends Exception { public class ExceptionVisitExpand extends Exception {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
import org.apache.olingo.odata4.producer.api.uri.UriInfoResource; import org.apache.olingo.odata4.server.api.uri.UriInfoResource;
public interface ExpandItem { public interface ExpandItem {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
import java.util.List; import java.util.List;

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.expression.Expression; import org.apache.olingo.odata4.server.api.uri.queryoption.expression.Expression;
public interface FilterOption extends SystemQueryOption { public interface FilterOption extends SystemQueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface FormatOption extends SystemQueryOption { public interface FormatOption extends SystemQueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface IdOption extends SystemQueryOption { public interface IdOption extends SystemQueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface InlineCountOption extends SystemQueryOption { public interface InlineCountOption extends SystemQueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface LevelsExpandOption { public interface LevelsExpandOption {

View File

@ -17,9 +17,9 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.expression.Expression; import org.apache.olingo.odata4.server.api.uri.queryoption.expression.Expression;
public interface OrderByItem { public interface OrderByItem {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface QueryOption { public interface QueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
import org.apache.olingo.odata4.producer.api.uri.queryoption.search.SearchExpression; import org.apache.olingo.odata4.server.api.uri.queryoption.search.SearchExpression;
public interface SearchOption extends SystemQueryOption { public interface SearchOption extends SystemQueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
import org.apache.olingo.odata4.commons.api.edm.provider.FullQualifiedName; import org.apache.olingo.odata4.commons.api.edm.provider.FullQualifiedName;
import org.apache.olingo.odata4.producer.api.uri.UriInfoResource; import org.apache.olingo.odata4.server.api.uri.UriInfoResource;
public interface SelectItem { public interface SelectItem {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface SkipOption extends SystemQueryOption { public interface SkipOption extends SystemQueryOption {

View File

@ -17,7 +17,7 @@
* specific language governing permissions and limitations * specific language governing permissions and limitations
* under the License. * under the License.
******************************************************************************/ ******************************************************************************/
package org.apache.olingo.odata4.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface SkipTokenOption extends SystemQueryOption { public interface SkipTokenOption extends SystemQueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public enum SupportedQueryOptions { public enum SupportedQueryOptions {
FILTER("$filter"), FILTER("$filter"),

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface SystemQueryOption extends QueryOption { public interface SystemQueryOption extends QueryOption {

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.producer.api.uri.queryoption; package org.apache.olingo.odata4.server.api.uri.queryoption;
public interface TopOption extends SystemQueryOption { public interface TopOption extends SystemQueryOption {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public interface AliasExpression extends Expression { public interface AliasExpression extends Expression {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public interface BinaryExpression extends Expression { public interface BinaryExpression extends Expression {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
import org.apache.olingo.odata4.commons.api.edm.EdmType; import org.apache.olingo.odata4.commons.api.edm.EdmType;

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public class ExceptionVisitExpression extends Exception { public class ExceptionVisitExpression 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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public interface Expression extends VisitableExression { public interface Expression extends VisitableExression {

View File

@ -16,14 +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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
import java.util.List; import java.util.List;
import org.apache.olingo.odata4.commons.api.edm.EdmEnumType; import org.apache.olingo.odata4.commons.api.edm.EdmEnumType;
import org.apache.olingo.odata4.commons.api.edm.EdmType; import org.apache.olingo.odata4.commons.api.edm.EdmType;
import org.apache.olingo.odata4.commons.api.exception.ODataApplicationException; import org.apache.olingo.odata4.commons.api.exception.ODataApplicationException;
import org.apache.olingo.odata4.producer.api.uri.UriInfoResource; import org.apache.olingo.odata4.server.api.uri.UriInfoResource;
public interface ExpressionVisitor<T> { public interface ExpressionVisitor<T> {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public interface LambdaRef extends Expression { public interface LambdaRef extends Expression {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public interface Literal extends Expression { public interface Literal extends Expression {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
import org.apache.olingo.odata4.commons.api.edm.EdmType; import org.apache.olingo.odata4.commons.api.edm.EdmType;
import org.apache.olingo.odata4.producer.api.uri.UriInfoResource; import org.apache.olingo.odata4.server.api.uri.UriInfoResource;
public interface Member extends Expression { public interface Member extends Expression {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public enum SupportedBinaryOperators { public enum SupportedBinaryOperators {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public enum SupportedConstants { public enum SupportedConstants {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public enum SupportedMethodCalls { public enum SupportedMethodCalls {
CONTAINS("contains"), STARTSWITH("startswith"), ENDSWITH("endswith"), LENGTH("length"), CONTAINS("contains"), STARTSWITH("startswith"), ENDSWITH("endswith"), LENGTH("length"),

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public enum SupportedUnaryOperators { public enum SupportedUnaryOperators {
MINUS("-"), NOT("not"); MINUS("-"), NOT("not");

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
import org.apache.olingo.odata4.commons.api.edm.EdmType; import org.apache.olingo.odata4.commons.api.edm.EdmType;

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
public interface UnaryOperator extends Expression { public interface UnaryOperator extends Expression {

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.producer.api.uri.queryoption.expression; package org.apache.olingo.odata4.server.api.uri.queryoption.expression;
import org.apache.olingo.odata4.commons.api.exception.ODataApplicationException; import org.apache.olingo.odata4.commons.api.exception.ODataApplicationException;

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.producer.api.uri.queryoption.search; package org.apache.olingo.odata4.server.api.uri.queryoption.search;
public interface SearchBinary extends SearchExpression { public interface SearchBinary extends SearchExpression {

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.producer.api.uri.queryoption.search; package org.apache.olingo.odata4.server.api.uri.queryoption.search;
public interface SearchExpression { public interface SearchExpression {

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