use of org.olat.core.commons.services.license.model.LicenseImpl in project openolat by klemens.
the class LicenseServiceImpl method createLicense.
@Override
public License createLicense(LicenseType licenseType) {
License license = new LicenseImpl();
license.setLicenseType(licenseType);
return license;
}
Aggregations