diff options
2 files changed, 31 insertions, 1 deletions
| diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MandateRetrievalRequest.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MandateRetrievalRequest.java new file mode 100644 index 000000000..4e99cc8aa --- /dev/null +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/MandateRetrievalRequest.java @@ -0,0 +1,29 @@ +package at.gv.egovernment.moa.id.protocols.stork2; + +import at.gv.egovernment.moa.id.auth.data.AuthenticationSession; +import at.gv.egovernment.moa.id.auth.exception.MOAIDException; +import at.gv.egovernment.moa.id.moduls.IAction; +import at.gv.egovernment.moa.id.moduls.IRequest; +import at.gv.egovernment.moa.logging.Logger; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * + */ +public class MandateRetrievalRequest implements IAction { +    public String processRequest(IRequest req, HttpServletRequest httpReq, HttpServletResponse httpResp, AuthenticationSession moasession) throws MOAIDException { +        Logger.setHierarchy("moa.id.protocols.stork2"); +        Logger.info("Entering mandateretrievalrequest"); +        return null;  // +    } + +    public boolean needAuthentication(IRequest req, HttpServletRequest httpReq, HttpServletResponse httpResp) { +        return true;  // +    } + +    public String getDefaultActionName() { +        return STORKProtocol.MANDATERETRIEVALREQUEST; +    } +} diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java index 19d1c7f15..ec77109af 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/STORKProtocol.java @@ -34,6 +34,7 @@ public class STORKProtocol implements IModulInfo, MOAIDAuthConstants {          actions.put(AUTHENTICATIONREQUEST, new AuthenticationRequest());          actions.put(ATTRIBUTE_COLLECTOR, new AttributeCollector());          actions.put(CONSENT_EVALUATOR, new ConsentEvaluator()); +        actions.put(MANDATERETRIEVALREQUEST, new MandateRetrievalRequest());      }      public String getName() { @@ -58,7 +59,7 @@ public class STORKProtocol implements IModulInfo, MOAIDAuthConstants {           */      public IRequest preProcess(HttpServletRequest request, HttpServletResponse response, String action) throws MOAIDException {      	Logger.setHierarchy("moa.id.protocols.stork2"); -        Logger.debug("Starting preprocessing"); +        Logger.info("Starting preprocessing for Stork2 protocol");          Logger.debug("Request method: " + request.getMethod());          Logger.debug("Request content length: " + request.getContentLength());          Logger.debug("Initiating action: " + action); | 
