VelocityContext context = new VelocityContext();
context.put("pay", mwResponse.getSelection().getPay());
context.put("ship", mwResponse.getSelection().getShip());
context.put("order", order);
context.put("maskedJWT", maskedWalletRequest.generateJWT());
context.put("fullWalletJWT", fullWalletRequest.generateJWT());
context.put("walletJSUrl", Config.WALLET_JS_URL);
PrintWriter pw;
pw = resp.getWriter();
Velocity.mergeTemplate("confirm.vm","UTF-8", context, pw);