[OLINGO-161] Refactored Java package names
This commit is contained in:
parent
c49ff80339
commit
9593b53cc8
|
@ -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;
|
|
@ -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();
|
|
@ -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;
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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();
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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();
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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>();
|
|
@ -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;
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
|
@ -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 {
|
|
@ -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;
|
|
@ -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,
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
|
@ -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;
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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,
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
|
|
@ -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;
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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"),
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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> {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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"),
|
|
@ -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");
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
Loading…
Reference in New Issue