Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2005 - 2019 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package global.namespace.truelicense.api.auth;
import global.namespace.fun.io.api.Source;
import global.namespace.truelicense.api.passwd.PasswordProtection;
import java.util.Optional;
/**
* Defines parameters for accessing a {@link java.security.KeyStore} which
* holds the public or private keys to sign or verify an artifact using an
* {@link Authentication}.
*
* 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.
*/
public interface AuthenticationParameters {
/**
* Returns the optional signature algorithm.
* If no value is present then the same signature algorithm should be used which was used to sign the public key of
* the keystore entry which is addressed by the other properties of this interface.
*/
Optional algorithm();
/**
* Returns the alias of the entry in the keystore.
* The returned string should be computed on demand from an obfuscated form, e.g. by processing it with the
* TrueLicense Maven Plugin.
*/
String alias();
/** Returns a password protection for accessing the private key in the key entry. */
PasswordProtection keyProtection();
/**
* Returns the optional source for loading the keystore.
* If no value is present then the keystore type does not require loading from a source.
*/
Optional source();
/** Returns a password protection for verifying the integrity of the key store. */
PasswordProtection storeProtection();
/**
* Returns the type of the keystore.
* The returned string should be computed on demand from an obfuscated form, e.g. by processing it with the
* TrueLicense Maven Plugin.
*/
String storeType();
}