/* * Copyright (c) 2012, 2016 Eike Stepper (Berlin, Germany) 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: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.security; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Assignee</b></em>'. * @noimplement This interface is not intended to be implemented by clients. * @noextend This interface is not intended to be extended by clients. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.emf.cdo.security.Assignee#getId <em>Id</em>}</li> * <li>{@link org.eclipse.emf.cdo.security.Assignee#getRoles <em>Roles</em>}</li> * </ul> * * @see org.eclipse.emf.cdo.security.SecurityPackage#getAssignee() * @model abstract="true" * @generated */ public interface Assignee extends SecurityItem { /** * Returns the value of the '<em><b>Roles</b></em>' reference list. * The list contents are of type {@link org.eclipse.emf.cdo.security.Role}. * It is bidirectional and its opposite is '{@link org.eclipse.emf.cdo.security.Role#getAssignees <em>Assignees</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Roles</em>' reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Roles</em>' reference list. * @see org.eclipse.emf.cdo.security.SecurityPackage#getAssignee_Roles() * @see org.eclipse.emf.cdo.security.Role#getAssignees * @model opposite="assignees" * @generated */ EList<Role> getRoles(); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(String) * @see org.eclipse.emf.cdo.security.SecurityPackage#getAssignee_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.security.Assignee#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(String value); } // Assignee