All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.swak.license.provider.V4LicenseFactory Maven / Gradle / Ivy

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 licenseClass() {
        return V4License.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy