com.tangosol.license.CoherenceCommunityEdition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coherence Show documentation
Show all versions of coherence Show documentation
Oracle Coherence Community Edition
/*
* Copyright (c) 2000, 2020, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
package com.tangosol.license;
import com.tangosol.net.CacheFactory;
/**
* This class is a license class.
*
* WARNING: DO NOT MODIFY OR RECOMPILE THIS CLASS!
*
* @since Coherence 14.1.2
* @author hr 2020.01.06
*/
public class CoherenceCommunityEdition
extends CoherenceApplicationEdition
{
/**
* @return a description of the LicensedObject
*/
public String toString()
{
return NAME;
}
/**
* Print the product license information.
*/
static public void printLicense()
{
printLicense(CoherenceCommunityEdition.class, NAME);
}
/**
* The product name.
*/
private static final String NAME = CacheFactory.PRODUCT + ": Community Edition";
}