blob: 23fd65fdea6902c02ebbf81039360ea9e865fe57 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Jose C. Dominguez - Initial implementation
*
*/
package org.eclipse.osbp.xtext.organizationdsl;
import org.eclipse.osbp.xtext.authorizationdsl.Role;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Organization Role</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.organizationdsl.OrganizationRole#getRole <em>Role</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.organizationdsl.OrganizationDSLPackage#getOrganizationRole()
* @model
* @generated
*/
public interface OrganizationRole extends OrganizationLazyResolver {
/**
* Returns the value of the '<em><b>Role</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Role</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Role</em>' reference.
* @see #setRole(Role)
* @see org.eclipse.osbp.xtext.organizationdsl.OrganizationDSLPackage#getOrganizationRole_Role()
* @model
* @generated
*/
Role getRole();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.organizationdsl.OrganizationRole#getRole <em>Role</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Role</em>' reference.
* @see #getRole()
* @generated
*/
void setRole(Role value);
} // OrganizationRole