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

net.java.truelicense.core.LicenseParameters Maven / Gradle / Ivy

Go to download

The TrueLicense Core module provides essential functionality for license management.

There is a newer version: 2.6.6
Show newest version
/*
 * Copyright (C) 2005-2013 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
package net.java.truelicense.core;

import net.java.truelicense.core.auth.*;
import net.java.truelicense.core.codec.CodecProvider;
import net.java.truelicense.core.comp.CompressionProvider;
import net.java.truelicense.core.crypto.EncryptionProvider;

/**
 * Defines license parameters.
 * 

* Unless stated otherwise, all no-argument methods need to return consistent * objects so that caching them is not required. * A returned object is considered to be consistent if it compares * {@linkplain Object#equals(Object) equal} or at least behaves identical to * any previously returned object. *

* Applications have no need to implement this interface and should not do so * because it may be subject to expansion in future versions. * * @see LicenseParametersProvider * @author Christian Schlichtherle */ public interface LicenseParameters extends LicenseAuthorizationProvider, LicenseInitializationProvider, LicenseValidationProvider, RepositoryProvider, AuthenticationProvider, CodecProvider, CompressionProvider, EncryptionProvider { /** Returns a new repository. */ @Override Repository repository(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy