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

com.quamto.jira.base.JwtParameter Maven / Gradle / Ivy

Go to download

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