All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.micronaut.web.router.StatusRouteInfo Maven / Gradle / Ivy

There is a newer version: 4.6.5
Show newest version
/*
 * 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.core.annotation.Nullable;
import io.micronaut.http.HttpStatus;

import java.util.Optional;

/**
 * Represents a {@link RouteInfo} that matches a status.
 *
 * @param  The target
 * @param  The result
 * @author Denis Stepanov
 * @since 4.0.0
 */
public interface StatusRouteInfo extends MethodBasedRouteInfo, RequestMatcher {
    /**
     * @return The type the exception originates from. Null if the error route is global.
     */
    @Nullable
    Class originatingType();

    /**
     * @return The status
     */
    HttpStatus status();

    /**
     * @return The status
     */
    default int statusCode() {
        return status().getCode();
    }

    /**
     * Match the given HTTP status.
     *
     * @param status The status to match
     * @return The route match
     */
    Optional> match(HttpStatus status);

    /**
     * Match the given HTTP status.
     *
     * @param statusCode The status to match
     * @return The route match
     */
    default Optional> match(int statusCode) {
        HttpStatus status;
        try {
            status = HttpStatus.valueOf(statusCode);
        } catch (IllegalArgumentException iae) {
            // custom status code
            return Optional.empty();
        }
        return match(status);
    }

    /**
     * Match the given HTTP status.
     *
     * @param originatingClass The class where the error originates from
     * @param status The status to match
     * @return The route match
     */
    Optional> match(Class originatingClass, HttpStatus status);

    /**
     * Match the given HTTP status.
     *
     * @param originatingClass The class where the error originates from
     * @param statusCode The status to match
     * @return The route match
     */
    default Optional> match(Class originatingClass, int statusCode) {
        HttpStatus status;
        try {
            status = HttpStatus.valueOf(statusCode);
        } catch (IllegalArgumentException iae) {
            // custom status code
            return Optional.empty();
        }
        return match(originatingClass, status);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy