package at.gv.egovernment.moa.id.protocols.stork2; import java.io.Serializable; import eu.stork.peps.auth.commons.STORKAuthnRequest; import eu.stork.peps.auth.commons.STORKAuthnResponse; // TODO: Auto-generated Javadoc /** * Holds info about an ongoing but yet incomplete stork authnrequest process. */ public class DataContainer implements Serializable { /** The Constant serialVersionUID. */ private static final long serialVersionUID = -8765997480582363012L; /** The incoming request. */ private STORKAuthnRequest request; /** The yet incomplete response. */ private STORKAuthnResponse response; /** The target. */ private String target; /** * Gets the request. * * @return the request */ public STORKAuthnRequest getRequest() { return request; } /** * Sets the request. * * @param request the new request */ public void setRequest(STORKAuthnRequest request) { this.request = request; } /** * Gets the response. * * @return the response */ public STORKAuthnResponse getResponse() { return response; } /** * Sets the response. * * @param response the new response */ public void setResponse(STORKAuthnResponse response) { this.response = response; } /** * Gets the target. * * @return the target */ public String getTarget() { return target; } /** * Sets the target. * * @param target the new target */ public void setTarget(String target) { this.target = target; } }