com.oracle.common.base.Associated 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.oracle.common.base;
/**
* The Associated interface facilitates the creation of a very generic
*
* equivalence relation between different objects and allows to group them
* based on the equality of the "association key" object returned by the
* {@link #getAssociatedKey} method.
*
* @param the type of associated key
*
* @author gg 2012.03.11
*
* @see Associator
* @deprecated use {@link com.oracle.coherence.common.base.Associated} instead
*/
@Deprecated
public interface Associated
extends com.oracle.coherence.common.base.Associated
{
}