提交 e48cb299 编写于 作者: S Stephen Connolly

[JENKINS-36871] Need to be able to access the instance identity from core

上级 39e35d20
/*
* The MIT License
*
* Copyright (c) 2016, CloudBees Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package jenkins.model.identity;
import hudson.ExtensionList;
import hudson.ExtensionPoint;
import java.security.KeyPair;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.cert.X509Certificate;
import javax.annotation.CheckForNull;
/**
* A source of instance identity.
*
* @param <PUB> the type of public key.
* @param <PRIV> the type of private key.
* @since FIXME
*/
public abstract class InstanceIdentityProvider<PUB extends PublicKey, PRIV extends PrivateKey> implements
ExtensionPoint {
/**
* Gets the {@link KeyPair} that comprises the instance identity.
*
* @return the {@link KeyPair} that comprises the instance identity.
*/
@CheckForNull
public abstract KeyPair getKeyPair();
/**
* Shortcut to {@link KeyPair#getPublic()}.
*
* @return the public key.
*/
@CheckForNull
public PUB getPublicKey() {
KeyPair keyPair = getKeyPair();
return keyPair == null ? null : (PUB) keyPair.getPublic();
}
/**
* Shortcut to {@link KeyPair#getPrivate()}.
*
* @return the private key.
*/
@CheckForNull
public PRIV getPrivateKey() {
KeyPair keyPair = getKeyPair();
return keyPair == null ? null : (PRIV) keyPair.getPublic();
}
/**
* Gets the self-signed {@link X509Certificate} that is associated with this identity. The certificate
* will must be currently valid. Repeated calls to this method may result in new certificates being generated.
*
* @return the certificate.
*/
@CheckForNull
public abstract X509Certificate getCertificate();
/**
* Gets the provider of the required identity type.
*
* @param keyType the type of private key.
* @param <PUB> the type of public key.
* @param <PRIV> the type of private key.
* @return the provider or {@code null} if no provider of the specified type is available.
*/
@CheckForNull
@SuppressWarnings("unchecked")
public static <PUB extends PublicKey, PRIV extends PrivateKey> InstanceIdentityProvider<PUB, PRIV> get(
Class<PRIV> keyType) {
for (InstanceIdentityProvider provider : ExtensionList.lookup(InstanceIdentityProvider.class)) {
KeyPair keyPair = provider.getKeyPair();
if (keyPair != null && keyType.isInstance(keyPair.getPrivate())) {
return (InstanceIdentityProvider<PUB, PRIV>) provider;
}
}
return null;
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册