From 3ef2ddd5cb1ee57317ffb757aceb86355a612a17 Mon Sep 17 00:00:00 2001
From: Roberto Sánchez <roberto.sanchez@curisit.net>
Date: Mon, 24 Feb 2014 14:55:10 +0000
Subject: [PATCH] #593 feature - Changed CRC logo inclusion in request to optional, the server will check if logo is mandatory or not

---
 src/main/java/net/curisit/securis/LicenseManager.java |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/net/curisit/securis/LicenseManager.java b/src/main/java/net/curisit/securis/LicenseManager.java
index 7aa0ac3..d3e7f16 100644
--- a/src/main/java/net/curisit/securis/LicenseManager.java
+++ b/src/main/java/net/curisit/securis/LicenseManager.java
@@ -38,9 +38,7 @@
 	 * </p>
 	 * 
 	 * @param licFile
-	 * @param appCode
-	 * @param customerCode
-	 * @return
+	 * @return The license bean stored in file
 	 * @throws SeCurisException
 	 */
 	public LicenseBean validateLicense(File licFile) throws SeCurisException {
@@ -58,7 +56,7 @@
 	}
 
 	/**
-	 * Creates a new request file with current hardware in the File passed as paramter
+	 * Creates a new request file with current hardware in the File passed as parameter
 	 * 
 	 * @param outputRequestFile
 	 *            File where the request data will be saved
@@ -83,6 +81,8 @@
 	 */
 	public LicenseBean sync(File licenseFile) throws SeCurisException {
 		LicenseBean lic = validateLicense(licenseFile);
+		if (true)
+			throw new SeCurisException("Action not implemented yet");
 		// TODO: Send the current LicenseBean to server to check if a new one is prepared.
 		return lic;
 	}

--
Gitblit v1.3.2