[OLINGO-575] Remove java warnings part 2
This commit is contained in:
parent
f46364072a
commit
4acc6bfbc6
|
@ -23,4 +23,5 @@ import java.io.Serializable;
|
|||
public interface AbstractSingleton<
|
||||
T extends EntityType<?>, KEY extends Serializable, EC extends EntityCollection<T, ?, ?>>
|
||||
extends Serializable {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -21,4 +21,5 @@ package org.apache.olingo.ext.proxy.api;
|
|||
import java.io.Serializable;
|
||||
|
||||
public interface AbstractTerm extends Serializable {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -23,4 +23,5 @@ import java.util.Collection;
|
|||
public interface ComplexCollection<
|
||||
T extends StructuredType<?>, EC extends Collection<T>, CT extends StructuredCollection<T, EC, ?>>
|
||||
extends StructuredCollection<T, EC, CT> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -19,4 +19,5 @@
|
|||
package org.apache.olingo.ext.proxy.api;
|
||||
|
||||
public interface ComplexType<T extends StructuredType<?>> extends StructuredType<T> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -19,4 +19,5 @@
|
|||
package org.apache.olingo.ext.proxy.api;
|
||||
|
||||
public interface Operations {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -20,4 +20,5 @@ package org.apache.olingo.ext.proxy.api;
|
|||
|
||||
public interface PrimitiveCollectionInvoker<T extends CollectionQuery<?>>
|
||||
extends CollectionQuery<PrimitiveCollectionInvoker<T>>, Invoker<T> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -20,4 +20,5 @@ package org.apache.olingo.ext.proxy.api;
|
|||
|
||||
public interface StructuredCollectionComposableInvoker<CT extends StructuredCollection<?, ?, ?>, O extends Operations>
|
||||
extends StructuredCollectionInvoker<CT>, ComposableInvoker<CT, O> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -20,4 +20,5 @@ package org.apache.olingo.ext.proxy.api;
|
|||
|
||||
public interface StructuredCollectionInvoker<CT extends StructuredCollection<?, ?, ?>>
|
||||
extends StructuredCollectionQuery<StructuredCollectionInvoker<CT>>, Invoker<CT> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -20,4 +20,5 @@ package org.apache.olingo.ext.proxy.api;
|
|||
|
||||
public interface StructuredComposableInvoker<T extends StructuredType<?>, O extends Operations>
|
||||
extends StructuredInvoker<T>, ComposableInvoker<T, O> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -20,4 +20,5 @@ package org.apache.olingo.ext.proxy.api;
|
|||
|
||||
public interface StructuredInvoker<T extends StructuredType<?>>
|
||||
extends StructuredQuery<StructuredInvoker<T>>, Invoker<T> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -29,4 +29,5 @@ import java.lang.annotation.Target;
|
|||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.TYPE)
|
||||
public @interface CompoundKey {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -31,4 +31,5 @@ import java.lang.annotation.Target;
|
|||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.METHOD)
|
||||
public @interface Key {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -29,4 +29,5 @@ import java.lang.annotation.Target;
|
|||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target(ElementType.TYPE)
|
||||
public @interface RowType {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -27,4 +27,6 @@ import java.lang.annotation.Target;
|
|||
@Target({ ElementType.METHOD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@HttpMethod("MERGE")
|
||||
public @interface MERGE {}
|
||||
public @interface MERGE {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -27,4 +27,6 @@ import java.lang.annotation.Target;
|
|||
@Target({ ElementType.METHOD })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@HttpMethod("PATCH")
|
||||
public @interface PATCH {}
|
||||
public @interface PATCH {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -354,7 +354,9 @@ public abstract class AbstractUtilities {
|
|||
try {
|
||||
final Map.Entry<String, List<String>> currents = extractLinkURIs(entitySetName, entityKey, linkName);
|
||||
uris.addAll(currents.getValue());
|
||||
} catch (Exception ignore) {}
|
||||
} catch (Exception ignore) {
|
||||
//Expected exception
|
||||
}
|
||||
}
|
||||
|
||||
uris.addAll(links);
|
||||
|
|
|
@ -295,7 +295,9 @@ public class APIBasicDesignTestITCase extends AbstractTestITCase {
|
|||
try {
|
||||
getContainer().getOrders().getByKey(1105).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {}
|
||||
} catch (IllegalArgumentException e) {
|
||||
// Test
|
||||
}
|
||||
service.getContext().detachAll(); // avoid influences
|
||||
}
|
||||
|
||||
|
@ -416,7 +418,7 @@ public class APIBasicDesignTestITCase extends AbstractTestITCase {
|
|||
container.getProducts().getByKey(1012).operations().getProductDetails(1);
|
||||
assertEquals(1, result.execute().size());
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void workingWithPrimitiveCollections() throws IOException {
|
||||
final PrimitiveCollection<String> emails = container.getPeople().getByKey(1).getEmails();
|
||||
|
@ -572,7 +574,9 @@ public class APIBasicDesignTestITCase extends AbstractTestITCase {
|
|||
try {
|
||||
getContainer().getOrders().getByKey(1105).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {}
|
||||
} catch (IllegalArgumentException e) {
|
||||
// Expected Exception
|
||||
}
|
||||
service.getContext().detachAll(); // avoid influences
|
||||
|
||||
order = getContainer().newEntityInstance(Order.class);
|
||||
|
@ -585,7 +589,9 @@ public class APIBasicDesignTestITCase extends AbstractTestITCase {
|
|||
try {
|
||||
getContainer().getOrders().getByKey(1105).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {}
|
||||
} catch (IllegalArgumentException e) {
|
||||
// Expected Exception
|
||||
}
|
||||
service.getContext().detachAll(); // avoid influences
|
||||
}
|
||||
|
||||
|
|
|
@ -138,6 +138,7 @@ public abstract class AbstractTestITCase extends AbstractBaseTestITCase {
|
|||
container.getOrders().getByKey(105).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected Exception
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -43,14 +43,14 @@ public class DerivedTypeTestITCase extends AbstractTestITCase {
|
|||
final CustomerCollection customers = container.getPeople().execute(CustomerCollection.class);
|
||||
assertNotNull(customers);
|
||||
|
||||
for (Customer customer : customers) {
|
||||
for (Object customer : customers) {
|
||||
assertTrue(customer instanceof Customer);
|
||||
}
|
||||
|
||||
final CreditCardPICollection creditCards = container.getAccounts().getByKey(101).
|
||||
getMyPaymentInstruments().execute(CreditCardPICollection.class);
|
||||
assertNotNull(creditCards);
|
||||
for (CreditCardPI creditCard : creditCards) {
|
||||
for (Object creditCard : creditCards) {
|
||||
assertTrue(creditCard instanceof CreditCardPI);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -121,6 +121,7 @@ public class EntityCreateTestITCase extends AbstractTestITCase {
|
|||
getContainer().getPeople().getByKey(id, Employee.class).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected
|
||||
}
|
||||
|
||||
getService().getContext().detachAll();
|
||||
|
@ -128,6 +129,7 @@ public class EntityCreateTestITCase extends AbstractTestITCase {
|
|||
getContainer().getPeople().getByKey(id, Employee.class).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -176,6 +178,7 @@ public class EntityCreateTestITCase extends AbstractTestITCase {
|
|||
getContainer().getCustomers().getByKey(id).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -260,6 +263,7 @@ public class EntityCreateTestITCase extends AbstractTestITCase {
|
|||
getContainer().getOrders().getByKey(id).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected
|
||||
}
|
||||
|
||||
actual = readCustomer(getContainer(), id);
|
||||
|
@ -272,6 +276,7 @@ public class EntityCreateTestITCase extends AbstractTestITCase {
|
|||
getContainer().getCustomers().getByKey(id).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -304,6 +309,7 @@ public class EntityCreateTestITCase extends AbstractTestITCase {
|
|||
getContainer().getOrderDetails().getByKey(key).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -114,6 +114,7 @@ public class MediaEntityTestITCase extends AbstractTestITCase {
|
|||
getContainer().getAdvertisements().getByKey(uuid).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//expected
|
||||
}
|
||||
getService().getContext().detachAll();
|
||||
}
|
||||
|
|
|
@ -150,6 +150,7 @@ public class OpenTypeTestITCase extends AbstractTestITCase {
|
|||
otcontainer.getRowIndex().getByKey(id).load();
|
||||
fail();
|
||||
} catch (IllegalArgumentException e) {
|
||||
//Expected
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Advertisements
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Categories
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface PersonDetails
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Persons
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface ProductDetails
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Products
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Suppliers
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -151,6 +151,6 @@ public interface Address
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface AddressCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -125,7 +125,7 @@ public interface Advertisement
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface AdvertisementCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@ public interface Category
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface CategoryCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -141,7 +141,7 @@ public interface Customer
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.demo.odatademo.types.Person.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface CustomerCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -185,7 +185,7 @@ public interface Employee
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.demo.odatademo.types.Person.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface EmployeeCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -261,7 +261,7 @@ public interface FeaturedProduct
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.demo.odatademo.types.Product.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface FeaturedProductCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ public interface Person
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface PersonCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -191,7 +191,7 @@ public interface PersonDetail
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface PersonDetailCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface ProductCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ public interface ProductDetail
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface ProductDetailCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -168,7 +168,7 @@ public interface Supplier
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface SupplierCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ public interface DefaultContainer extends PersistenceManager {
|
|||
Operations operations();
|
||||
|
||||
public interface Operations extends org.apache.olingo.ext.proxy.api.Operations {
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
||||
<NE extends EntityType<?>> NE newEntityInstance(Class<NE> ref);
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Row
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface RowIndex
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -89,6 +89,6 @@ public interface AccountInfo
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface AccountInfoCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -298,6 +298,6 @@ public interface ContactDetails
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface ContactDetailsCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ public interface IndexedRow
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.opentype.microsoft.test.odata.services.opentypesservicev4.types.Row.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface IndexedRowCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -67,7 +67,7 @@ public interface Row
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface RowCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ public interface RowIndex
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface RowIndexCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Accounts
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Customers
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Departments
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Employees
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -36,5 +36,5 @@ public interface OrderDetails
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Orders
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface People
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -36,5 +36,5 @@ public interface ProductDetails
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -36,5 +36,5 @@ public interface ProductReviews
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface Products
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface StoredPIs
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -34,5 +34,5 @@ public interface SubscriptionTemplates
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}}
|
||||
|
|
|
@ -214,6 +214,7 @@ public interface Account
|
|||
extends org.apache.olingo.ext.proxy.api.EntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrument, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrumentCollection>,
|
||||
org.apache.olingo.ext.proxy.api.StructuredCollectionQuery<MyPaymentInstruments>,
|
||||
AbstractEntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrument, java.lang.Integer, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrumentCollection> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
||||
@org.apache.olingo.ext.proxy.api.annotations.NavigationProperty(name = "ActiveSubscriptions",
|
||||
|
@ -232,6 +233,7 @@ public interface Account
|
|||
extends org.apache.olingo.ext.proxy.api.EntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Subscription, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.SubscriptionCollection>,
|
||||
org.apache.olingo.ext.proxy.api.StructuredCollectionQuery<ActiveSubscriptions>,
|
||||
AbstractEntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Subscription, java.lang.Integer, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.SubscriptionCollection> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface AccountCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -146,6 +146,7 @@ public interface AccountComposableInvoker
|
|||
extends org.apache.olingo.ext.proxy.api.EntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrument, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrumentCollection>,
|
||||
org.apache.olingo.ext.proxy.api.StructuredCollectionQuery<MyPaymentInstruments>,
|
||||
AbstractEntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrument, java.lang.Integer, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrumentCollection> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
||||
@org.apache.olingo.ext.proxy.api.annotations.NavigationProperty(name = "ActiveSubscriptions",
|
||||
|
@ -164,6 +165,7 @@ public interface AccountComposableInvoker
|
|||
extends org.apache.olingo.ext.proxy.api.EntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Subscription, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.SubscriptionCollection>,
|
||||
org.apache.olingo.ext.proxy.api.StructuredCollectionQuery<ActiveSubscriptions>,
|
||||
AbstractEntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Subscription, java.lang.Integer, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.SubscriptionCollection> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -89,6 +89,6 @@ public interface AccountInfo
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface AccountInfoCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -109,6 +109,6 @@ public interface Address
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface AddressCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ public interface Asset
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface AssetCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ public interface Club
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface ClubCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -132,6 +132,6 @@ public interface CompanyAddress
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Address.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface CompanyAddressCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface CompanyCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -267,7 +267,7 @@ public interface CreditCardPI
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.PaymentInstrument.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
@ -340,6 +340,7 @@ public interface CreditCardPI
|
|||
extends org.apache.olingo.ext.proxy.api.EntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecord, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecordCollection>,
|
||||
org.apache.olingo.ext.proxy.api.StructuredCollectionQuery<CreditRecords>,
|
||||
AbstractEntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecord, java.lang.Integer, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecordCollection> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface CreditCardPICollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -261,6 +261,7 @@ public interface CreditCardPIComposableInvoker
|
|||
extends org.apache.olingo.ext.proxy.api.EntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecord, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecordCollection>,
|
||||
org.apache.olingo.ext.proxy.api.StructuredCollectionQuery<CreditRecords>,
|
||||
AbstractEntitySet<org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecord, java.lang.Integer, org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.CreditRecordCollection> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -135,7 +135,7 @@ public interface CreditRecord
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface CreditRecordCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -343,7 +343,7 @@ public interface Customer
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Person.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface CustomerCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -122,7 +122,7 @@ public interface Department
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface DepartmentCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
|
@ -310,7 +310,7 @@ public interface Employee
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.fit.proxy.v4.staticservice.microsoft.test.odata.services.odatawcfservice.types.Person.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Annotations annotations();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public interface EmployeeCollection extends
|
|||
Operations operations();
|
||||
|
||||
interface Operations extends org.apache.olingo.ext.proxy.api.Operations{
|
||||
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
Object getAnnotation(Class<? extends AbstractTerm> term);
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue