net.java.truecommons.key.spec.AbstractKeyManagerMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truecommons-key-spec Show documentation
Show all versions of truecommons-key-spec Show documentation
Specifies a pluggable API for key management.
The newest version!
/*
* Copyright (C) 2005-2015 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truecommons.key.spec;
import net.java.truecommons.services.Container;
import net.java.truecommons.shed.UniqueObject;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import java.util.Map;
import java.util.ServiceConfigurationError;
/**
* An abstract key manager map.
* When implementing a key manager map, you should extend this class rather
* than directly implementing the interface in order to maintain binary
* backwards compatibility even if the interface is changed.
*
* Implementations must be safe for multi-threading.
*
* @since TrueCommons 2.2
* @author Christian Schlichtherle
*/
@Immutable
public abstract class AbstractKeyManagerMap
extends UniqueObject
implements KeyManagerMap, Container