1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*******************************************************************************
* Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.osgi.signedcontent;
import java.io.File;
import java.io.IOException;
import java.security.*;
import java.security.cert.CertificateException;
import org.osgi.framework.Bundle;
/**
* A factory used to create {@link SignedContent} objects.
* <p>
* The framework will register a factory implementation as an OSGi service.
* This service can be used to get <code>SignedContent</code> for a bundle.
* It can also be used to get <code>SignedContent</code> for a repository file.
* The supported formats for file repositories are jar files and directories containing the
* content of an extracted jar.
* </p>
* <p>
* This interface is not intended to be implemented by clients.
* </p>
* @since 3.4
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface SignedContentFactory {
/**
* Returns a <code>SignedContent</code> object for the specified content of a repository.
* @param content the content of the repository
* @return signed content for the specified repository
* @throws IOException if an IO exception occurs while reading the repository
* @throws NoSuchProviderException if there's no security provider for the signed content
* @throws NoSuchAlgorithmException if the cryptographic algorithm is not available for the signed content
* @throws CertificateException if there is a problem with one of the certificates of the signed content
* @throws SignatureException if there is a problem with one of the signatures of the signed content
* @throws InvalidKeyException if there is a problem with one of the certificate keys of the signed content
*/
public SignedContent getSignedContent(File content) throws IOException, InvalidKeyException, SignatureException, CertificateException, NoSuchAlgorithmException, NoSuchProviderException;
/**
* Returns a <code>SignedContent</code> object for the specified bundle.
* @param bundle the bundle to get a signed content for.
* @return signed content for the specified bundle.
* @throws IOException if an IO exception occurs while reading the bundle content
* @throws NoSuchProviderException if there's no security provider for the signed content
* @throws NoSuchAlgorithmException if the cryptographic algorithm is not available for the signed content
* @throws CertificateException if there is a problem with one of the certificates of the signed content
* @throws SignatureException if there is a problem with one of the signatures of the signed content
* @throws InvalidKeyException if there is a problem with one of the certificate keys of the signed content
*/
public SignedContent getSignedContent(Bundle bundle) throws IOException, InvalidKeyException, SignatureException, CertificateException, NoSuchAlgorithmException, NoSuchProviderException;
}
|