Java Code Examples for io.micronaut.core.type.Argument#of()
The following examples show how to use
io.micronaut.core.type.Argument#of() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AwsProxyRequestContextArgumentBinder.java From micronaut-aws with Apache License 2.0 | 4 votes |
@Override public Argument<AwsProxyRequestContext> argumentType() { return Argument.of(AwsProxyRequestContext.class); }
Example 2
Source File: AwsProxyPrincipalBinder.java From micronaut-aws with Apache License 2.0 | 4 votes |
@Override public Argument<Principal> argumentType() { return Argument.of(Principal.class); }
Example 3
Source File: ContextArgumentBinder.java From micronaut-aws with Apache License 2.0 | 4 votes |
@Override public Argument<Context> argumentType() { return Argument.of(Context.class); }
Example 4
Source File: AwsProxyRequestArgumentBinder.java From micronaut-aws with Apache License 2.0 | 4 votes |
@Override public Argument<AwsProxyRequest> argumentType() { return Argument.of(AwsProxyRequest.class); }
Example 5
Source File: ServerHttpRequestBinder.java From micronaut-spring with Apache License 2.0 | 4 votes |
@Override public Argument<ServerHttpRequest> argumentType() { return Argument.of(ServerHttpRequest.class); }
Example 6
Source File: HttpMethodArgumentBinder.java From micronaut-spring with Apache License 2.0 | 4 votes |
@Override public Argument<HttpMethod> argumentType() { return Argument.of(HttpMethod.class); }
Example 7
Source File: ModelRequestArgumentBinder.java From micronaut-spring with Apache License 2.0 | 4 votes |
@Override public Argument<Model> argumentType() { return Argument.of(Model.class); }
Example 8
Source File: ModelMapRequestArgumentBinder.java From micronaut-spring with Apache License 2.0 | 4 votes |
@Override public Argument<ModelMap> argumentType() { return Argument.of(ModelMap.class); }