rsanchez
2014-12-01 e9297cfa6b7b86ffdfa1d10609295771c9b00e18
src/main/java/net/curisit/securis/LicenseManager.java
....@@ -210,4 +210,13 @@
210210 }
211211 }
212212
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
+ }
213222 }