com.quamto.jira.base.JwtParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugins-base Show documentation
Show all versions of plugins-base Show documentation
Library that contains the class base to support functionalities in the JIRA Plugins
The newest version!
package com.quamto.jira.base;
/**
* Class that contains the parameters required to generate a jwt token with
* Uri and http method required
*
* @since 14/09/2016
* @author jholguin
*
*/
public class JwtParameter {
private String requestURI;
private String requestMethod;
public JwtParameter() {
}
public JwtParameter(String requestURI, String requestMethod) throws Exception {
try {
this.requestURI = requestURI;
this.requestMethod = requestMethod;
}catch(Exception e) {
throw e;
}
}
public String getRequestURI() {
return requestURI;
}
public void setRequestURI(String requestURI) {
this.requestURI = requestURI;
}
public String getRequestMethod() {
return requestMethod;
}
public void setRequestMethod(String requestMethod) {
this.requestMethod = requestMethod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy