Velocity.init();
VelocityContext context = new VelocityContext();
context.put("subscription", testSubscription());
StringWriter writer = new StringWriter();
Reader reader =
new InputStreamReader(getClass().getResourceAsStream("renew.vm"));
Velocity.evaluate(context, writer, "test", reader);
logger.debug("renew: " + writer.toString());