com.swak.license.provider.V4LicenseFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swak-license-core Show documentation
Show all versions of swak-license-core Show documentation
swak component of trueLicense core
The newest version!
/*
* Copyright (C) 2005 - 2019 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package com.swak.license.provider;
import com.swak.license.api.License;
import com.swak.license.api.LicenseFactory;
/**
* A license factory for use with V4 format license keys.
*/
final class V4LicenseFactory implements LicenseFactory {
@Override
public License license() {
return new V4License();
}
@Override
public Class extends License> licenseClass() {
return V4License.class;
}
}