blob: 8a9b1dc593f6fa76a3b4420a1e68e5caf3ecdbd9 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2010 Oracle
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Konstantin Komissarchik - initial implementation and ongoing maintenance
******************************************************************************/
package org.eclipse.jst.common.project.facet.core.libprov;
/**
* Enumeration of library provider action types.
*
* @author <a href="mailto:konstantin.komissarchik@oracle.com">Konstantin Komissarchik</a>
* @since 1.4
*/
public enum LibraryProviderActionType
{
/**
* Represents the action of configuring the library in a project.
*/
INSTALL,
/**
* Represents removing the library from a project.
*/
UNINSTALL
}