package eu.dnetlib.enabling.aas.ctx;

/**
 * Used for passing information concernig details of creating SecurityContext.
 * Transfers data from authenitcation response to a2service.
 * @author mhorst
 *
 */
public class SecCtxInfoDTO {

	private String secCtxType = null;
	private String resourceId = null;
	
	/**
	 * Returns resourceId.
	 * @return resourceId
	 */
	public String getResourceId() {
		return resourceId;
	}
	
	/**
	 * Sets resourceId.
	 * @param resourceId
	 */
	public void setResourceId(String resourceId) {
		this.resourceId = resourceId;
	}
	
	/**
	 * Returns security context type.
	 * @return security context type
	 */
	public String getSecCtxType() {
		return secCtxType;
	}
	
	/**
	 * Sets security context type.
	 * @param secCtxType
	 */
	public void setSecCtxType(String secCtxType) {
		this.secCtxType = secCtxType;
	}
}
