io.micronaut.security.config.InterceptUrlMapPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-security Show documentation
Show all versions of micronaut-security Show documentation
Official Security Solution for Micronaut
/*
* 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.security.config;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.http.HttpMethod;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
/**
*
* @author Sergio del Amo
* @since 1.0
*/
public class InterceptUrlMapPattern {
private final String pattern;
private final List access;
private final Optional httpMethod;
/**
* If the provided http method is null, the pattern will match all methods.
*
* @param pattern e.g. /health
* @param access e.g. ['ROLE_USER', 'ROLE_ADMIN']
* @param httpMethod e.g. HttpMethod.GET
*/
public InterceptUrlMapPattern(String pattern, List access, @Nullable HttpMethod httpMethod) {
this.pattern = pattern;
this.access = access;
this.httpMethod = Optional.ofNullable(httpMethod);
}
/**
* pattern getter.
* @return string e.g. /health
*/
public String getPattern() {
return pattern;
}
/**
* access getter.
* @return e.g. ['ROLE_USER', 'ROLE_ADMIN']
*/
public List getAccess() {
return new ArrayList<>(access);
}
/**
* httpMethod getter.
* @return e.g. HttpMethod.GET
*/
public Optional getHttpMethod() {
return httpMethod;
}
}