src/main/java/net/curisit/securis/LicenseManager.java
.. .. @@ -210,4 +210,13 @@ 210 210 } 211 211 } 212 212 213 + public static void main(String[] args) throws SeCurisException {214 + String filename = null;215 + if (filename == null)216 + filename = "./license.req";217 + File file = new File(filename);218 + LicenseManager.getInstance().createRequestFile(file);219 + LOG.info("Request file {} generated OK", file.getAbsolutePath());220 +221 + }213 222 }