blob: a9838f122f5ba9493f8b05d9a1bfbb89d47e9a15 [file] [log] [blame]
/*******************************************************************************
* 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.equinox.internal.provisional.p2.ui.policy;
import java.io.*;
import org.eclipse.equinox.internal.provisional.p2.metadata.IInstallableUnit;
/**
* Abstract class for a manager which tracks which licenses have been accepted.
*
* @since 3.4
*/
public abstract class LicenseManager {
public abstract boolean accept(IInstallableUnit iu);
public abstract boolean reject(IInstallableUnit iu);
public abstract boolean isAccepted(IInstallableUnit iu);
public abstract boolean hasAcceptedLicenses();
/**
*
* @param stream
* @throws IOException
* @since 3.5
*/
public abstract void write(OutputStream stream) throws IOException;
/**
*
* @param stream
* @throws IOException
* @since 3.5
*/
public abstract void read(InputStream stream) throws IOException;
}