properties.put("Name", name);
properties.put("Email", email);
try {
AquaticPrimeLicenseGenerator apGen = new AquaticPrimeLicenseGeneratorImpl(privkey, pubkey);
AquaticPrimeLicense license = apGen.generateLicense(properties);
System.out.println("License>");
System.out.println(license.toXml());
} catch (LicenseGenerationException e) {
throw new RuntimeException(e);
}