/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package eu.dnetlib.espas.pep;

/**
 *
 * @author gathanas
 */
public class PEPResponse {

    private String resourceId;
    private String responseMessage;
    private boolean isPermited;

    
    public PEPResponse(String resourceId, String responseMessage, boolean isPermited) {
        this.resourceId = resourceId;
        this.responseMessage = responseMessage;
        this.isPermited = isPermited;
    }

    
    
    /**
     * Get the value of resourceId
     *
     * @return the value of resourceId
     */
    public String getResourceId() {
        return resourceId;
    }
    
    /**
     * Get the value of responseMessage
     *
     * @return the value of responseMessage
     */
    public String getResponseMessage() {
        return responseMessage;
    }


    /**
     * Get the value of isPermited
     *
     * @return the value of isPermited
     */
    public boolean isIsPermited() {
        return isPermited;
    }

}
