/*
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.web.router;
import io.micronaut.http.HttpMethod;
import io.micronaut.http.HttpRequest;
import io.micronaut.http.MediaType;
import io.micronaut.http.uri.UriMatchTemplate;
import io.micronaut.http.uri.UriMatcher;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.net.URI;
import java.util.Optional;
import java.util.function.Predicate;
Author: Graeme Rocher Since: 1.0
/**
* Represents a {@link Route} that matches a {@link URI}.
*
* @author Graeme Rocher
* @since 1.0
*/
public interface UriRoute extends Route, UriMatcher, Comparable<UriRoute> {
Defines routes nested within this route.
Params: - nested – The nested routes
Returns: This route
/**
* Defines routes nested within this route.
*
* @param nested The nested routes
* @return This route
*/
@Override
UriRoute nest(Runnable nested);
Returns: The HTTP method for this route
/**
* @return The HTTP method for this route
*/
HttpMethod getHttpMethod();
Returns: The UriMatchTemplate
used to match URIs
/**
* @return The {@link UriMatchTemplate} used to match URIs
*/
UriMatchTemplate getUriMatchTemplate();
Match this route within the given URI and produce a RouteMatch
if a match is found. Params: - uri – The URI The URI
Returns: An Optional
of RouteMatch
/**
* Match this route within the given URI and produce a {@link RouteMatch} if a match is found.
*
* @param uri The URI The URI
* @return An {@link Optional} of {@link RouteMatch}
*/
@Override
default Optional<UriRouteMatch> match(URI uri) {
return match(uri.toString());
}
Match this route within the given URI and produce a RouteMatch
if a match is found. Params: - uri – The URI The URI
Returns: An Optional
of RouteMatch
/**
* Match this route within the given URI and produce a {@link RouteMatch} if a match is found.
*
* @param uri The URI The URI
* @return An {@link Optional} of {@link RouteMatch}
*/
@Override
Optional<UriRouteMatch> match(String uri);
@Override
UriRoute consumes(MediaType... mediaType);
@Override
UriRoute produces(MediaType... mediaType);
@Override
UriRoute consumesAll();
@Override
UriRoute where(Predicate<HttpRequest<?>> condition);
@Override
UriRoute body(String argument);
The exposed port that the route applies to.
Params: - port – The port
Returns: The route
/**
* The exposed port that the route applies to.
*
* @param port The port
* @return The route
*/
UriRoute exposedPort(int port);
Returns: The port the route listens to, or null if the default port
/**
* @return The port the route listens to, or null if the default port
*/
@Nullable
Integer getPort();
Returns: The http method. Is equal to getHttpMethod()
value for standard http methods.
/**
*
* @return The http method. Is equal to {@link #getHttpMethod()} value for standard http methods.
*/
default String getHttpMethodName() {
return getHttpMethod().name();
}
}