We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edeadbb commit dcf0368Copy full SHA for dcf0368
src/main/java/io/cryptolens/models/ActivateModel.java
@@ -51,6 +51,12 @@ public class ActivateModel {
51
* Allows you to specify a friendy name for the activated device, for example the employee's email.
52
* Friendly name does not impact the number of active machine codes / seats, but it offers an easy way
53
* of linking a machine/seat with a user. For added security, you can HMAC hash this value.
54
+ * <br/>
55
+ * The computer name can, as an example, be used as the friendly name:
56
+ * <code>
57
+ * String friendlyName = InetAddress.getLocalHost().getHostName();
58
+ * </code>
59
+ *
60
*/
61
public String FriendlyName;
62
0 commit comments