net.java.truelicense.core.LicenseInitialization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truelicense-core Show documentation
Show all versions of truelicense-core Show documentation
The TrueLicense Core module provides essential functionality for
license management.
/*
* Copyright (C) 2005-2013 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truelicense.core;
/**
* Defines a license initialization.
*
* @see LicenseInitializationProvider
* @author Christian Schlichtherle
*/
public interface LicenseInitialization {
/** Initializes the properties of the given license. */
void initialize(License license);
}