io.micronaut.web.router.UriRoute Maven / Gradle / Ivy
/*
* Copyright 2017-2019 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
*
* http://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 java.net.URI;
import java.util.Optional;
import java.util.function.Predicate;
/**
* Represents a {@link Route} that matches a {@link URI}.
*
* @author Graeme Rocher
* @since 1.0
*/
public interface UriRoute extends Route, UriMatcher, Comparable {
/**
* Defines routes nested within this route.
*
* @param nested The nested routes
* @return This route
*/
UriRoute nest(Runnable nested);
/**
* @return The HTTP method for this route
*/
HttpMethod getHttpMethod();
/**
* @return The {@link UriMatchTemplate} used to match URIs
*/
UriMatchTemplate getUriMatchTemplate();
/**
* 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 match(URI uri) {
return match(uri.toString());
}
/**
* 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 match(String uri);
@Override
UriRoute consumes(MediaType... mediaType);
@Override
UriRoute produces(MediaType... mediaType);
@Override
UriRoute acceptAll();
@Override
UriRoute where(Predicate> condition);
@Override
UriRoute body(String argument);
}