diff options
author | Henri Sara <hesara@vaadin.com> | 2014-07-02 09:39:09 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-07-03 06:50:15 +0000 |
commit | ff8efe1b94b077c24085962db733fbb26f213484 (patch) | |
tree | 3586dc6753441dd97e44a6ca1f9b62c82d84be64 /client-compiler/src/com/vaadin/tools/CvalChecker.java | |
parent | b258e2b7dd6ae0948ab14c3a2776bc4a8429ea97 (diff) | |
download | vaadin-framework-ff8efe1b94b077c24085962db733fbb26f213484.tar.gz vaadin-framework-ff8efe1b94b077c24085962db733fbb26f213484.zip |
Add missing @since 7.3 to javadoc
Change-Id: I62610ef647fbbb5a7cfae25ac5c7628f78f2c6ff
Diffstat (limited to 'client-compiler/src/com/vaadin/tools/CvalChecker.java')
-rw-r--r-- | client-compiler/src/com/vaadin/tools/CvalChecker.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/client-compiler/src/com/vaadin/tools/CvalChecker.java b/client-compiler/src/com/vaadin/tools/CvalChecker.java index 5ad44a70f8..2de7e10faa 100644 --- a/client-compiler/src/com/vaadin/tools/CvalChecker.java +++ b/client-compiler/src/com/vaadin/tools/CvalChecker.java @@ -36,19 +36,21 @@ import org.json.JSONObject; /** * This class is able to validate the vaadin CVAL license. - * + * * It reads the developer license file and asks the server to validate the * licenseKey. If the license is invalid it throws an exception with the * information about the problem and the server response. + * + * @since 7.3 */ public final class CvalChecker { /* * Class used for binding the JSON gotten from server. - * + * * It is not in a separate f le, so as it is easier to copy into any product * which does not depend on vaadin core. - * + * * We are using org.json in order not to use additional dependency like * auto-beans, gson, etc. */ @@ -301,7 +303,7 @@ public final class CvalChecker { /** * Given a product name returns the name of the file with the license key. - * + * * Traditionally we have delivered license keys with a name like * 'vaadin.touchkit.developer.license' but our database product name is * 'vaadin-touchkit' so we have to replace '-' by '.' to maintain @@ -342,7 +344,7 @@ public final class CvalChecker { /** * Validate whether there is a valid license key for a product. - * + * * @param productName * for example vaadin-touchkit * @param productVersion |