![JAR search and dependency download from the Maven repository](/logo.png)
com.labs64.netlicensing.provider.Form Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netlicensing-client Show documentation
Show all versions of netlicensing-client Show documentation
Java wrapper for Labs64 NetLicensing RESTful API
package com.labs64.netlicensing.provider;
import java.util.HashMap;
import java.util.Map;
public class Form {
private Map params;
public Form() {
params = new HashMap<>();
}
public void param(String key, String value) {
params.put(key, value);
}
public Map getParams() {
return params;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy