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

com.atlassian.jira.security.request.RequestMethod Maven / Gradle / Ivy

The newest version!
package com.atlassian.jira.security.request;

import com.atlassian.annotations.PublicApi;

import java.util.Locale;

@PublicApi
public enum RequestMethod {
    GET,
    HEAD,
    OPTIONS,
    CONNECT,
    DELETE,
    POST,
    PUT,
    PATCH,
    TRACE;

    public boolean matches(String method) {
        return this.name().toUpperCase(Locale.ROOT).equals(method.toUpperCase(Locale.ROOT));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy