com.atlassian.jira.security.request.RequestMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jira9-compatibility Show documentation
Show all versions of jira9-compatibility Show documentation
This is library for compatilibity old Jira versions with Jira 9
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