blob: 64813d40e18478f451a745026680c42435ff043a [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2009 Technical University Berlin, Germany.
*
* 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
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otequinox.hook;
/**
* Possible values while negotiating aspect access (aspectBinding and forcedExport).
* Note that order is relevant in this enum: higher index means higher priority.
*
* @author stephan
* @since 1.2.6
*/
public enum AspectPermission {
/** Not influencing negotiation between other parties. */
UNDEFINED,
/** A permission is granted unless someone else denies it. */
GRANT,
/** A permission is explicitly denied. Cannot be overridden. */
DENY;
}