[OLINGO-575] Removed unbound wildcard
This commit is contained in:
parent
ced93e8f9f
commit
744fe57746
|
@ -21,7 +21,7 @@ package org.apache.olingo.ext.proxy.api;
|
|||
import java.util.Collection;
|
||||
|
||||
public interface ComplexCollection<
|
||||
T extends StructuredType<?>, EC extends Collection<T>, CT extends StructuredCollection<T, EC, ?>>
|
||||
T extends StructuredType, EC extends Collection<T>, CT extends StructuredCollection<T, EC, ?>>
|
||||
extends StructuredCollection<T, EC, CT> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -18,6 +18,6 @@
|
|||
*/
|
||||
package org.apache.olingo.ext.proxy.api;
|
||||
|
||||
public interface ComplexType<T extends StructuredType<?>> extends StructuredType<T> {
|
||||
public interface ComplexType<T extends StructuredType> extends StructuredType<T> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.apache.olingo.ext.proxy.api;
|
|||
import java.util.Collection;
|
||||
|
||||
public interface EntityCollection<
|
||||
T extends StructuredType<?>, EC extends Collection<T>, CT extends StructuredCollection<T, EC, ?>>
|
||||
T extends StructuredType, EC extends Collection<T>, CT extends StructuredCollection<T, EC, ?>>
|
||||
extends StructuredCollection<T, EC, CT> {
|
||||
|
||||
/**
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.apache.olingo.ext.proxy.api;
|
||||
|
||||
public interface EntityType<T extends StructuredType<?>> extends StructuredType<T> {
|
||||
public interface EntityType<T extends StructuredType> extends StructuredType<T> {
|
||||
|
||||
/**
|
||||
* Appends ref segment to the URI.
|
||||
|
|
|
@ -24,7 +24,7 @@ import java.util.Collection;
|
|||
* Marker interface for Entity and complex type.
|
||||
*/
|
||||
public interface StructuredCollection<
|
||||
T extends StructuredType<?>, EC extends Collection<T>, CT extends StructuredCollection<T, EC, ?>>
|
||||
T extends StructuredType, EC extends Collection<T>, CT extends StructuredCollection<T, EC, ?>>
|
||||
extends GenericCollection<T, EC> {
|
||||
|
||||
/**
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.apache.olingo.ext.proxy.api;
|
||||
|
||||
public interface StructuredComposableInvoker<T extends StructuredType<?>, O extends Operations>
|
||||
public interface StructuredComposableInvoker<T extends StructuredType, O extends Operations>
|
||||
extends StructuredInvoker<T>, ComposableInvoker<T, O> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.apache.olingo.ext.proxy.api;
|
||||
|
||||
public interface StructuredInvoker<T extends StructuredType<?>>
|
||||
public interface StructuredInvoker<T extends StructuredType>
|
||||
extends StructuredQuery<StructuredInvoker<T>>, Invoker<T> {
|
||||
//No additional methods needed for now.
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue