[OLINGO-575] Removed unbound wildcard

This commit is contained in:
Michael Bolz 2015-03-11 09:19:20 +01:00
parent ced93e8f9f
commit 744fe57746
7 changed files with 7 additions and 7 deletions

View File

@ -21,7 +21,7 @@ package org.apache.olingo.ext.proxy.api;
import java.util.Collection; import java.util.Collection;
public interface ComplexCollection< 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> { extends StructuredCollection<T, EC, CT> {
//No additional methods needed for now. //No additional methods needed for now.
} }

View File

@ -18,6 +18,6 @@
*/ */
package org.apache.olingo.ext.proxy.api; 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. //No additional methods needed for now.
} }

View File

@ -21,7 +21,7 @@ package org.apache.olingo.ext.proxy.api;
import java.util.Collection; import java.util.Collection;
public interface EntityCollection< 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> { extends StructuredCollection<T, EC, CT> {
/** /**

View File

@ -18,7 +18,7 @@
*/ */
package org.apache.olingo.ext.proxy.api; 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. * Appends ref segment to the URI.

View File

@ -24,7 +24,7 @@ import java.util.Collection;
* Marker interface for Entity and complex type. * Marker interface for Entity and complex type.
*/ */
public interface StructuredCollection< 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> { extends GenericCollection<T, EC> {
/** /**

View File

@ -18,7 +18,7 @@
*/ */
package org.apache.olingo.ext.proxy.api; 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> { extends StructuredInvoker<T>, ComposableInvoker<T, O> {
//No additional methods needed for now. //No additional methods needed for now.
} }

View File

@ -18,7 +18,7 @@
*/ */
package org.apache.olingo.ext.proxy.api; 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> { extends StructuredQuery<StructuredInvoker<T>>, Invoker<T> {
//No additional methods needed for now. //No additional methods needed for now.
} }