blob: 800cc49147e03a35afbaad7476f334d57e8ab913 [file] [log] [blame]
/**
* Copyright (c)2020 CEA LIST, Committer Name, and others.
*
* 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
*
* Contributors:
* CEA LIST - Initial API and implementation
* Patrick Tessier (CEA LIST) Patrick.tessier@cea.fr
* Gabriel Pedroza (CEA LIST) gabriel.pedroza@cea.fr
*
*/
package org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR;
import org.eclipse.emf.common.util.EList;
import org.eclipse.papyrus.pdp4eng.common.profile.pdp4engCommonGDPR.DataSubject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Process Principle</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.ProcessPrinciple#getProcess <em>Process</em>}</li>
* <li>{@link org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.ProcessPrinciple#getDataSubject <em>Data Subject</em>}</li>
* <li>{@link org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.ProcessPrinciple#getPersonalData <em>Personal Data</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.pdp4engReqGDPRPackage#getProcessPrinciple()
* @model
* @generated
*/
public interface ProcessPrinciple extends GDPRPrinciple {
/**
* Returns the value of the '<em><b>Process</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Process</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Process</em>' reference.
* @see #setProcess(ProcessRequirement)
* @see org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.pdp4engReqGDPRPackage#getProcessPrinciple_Process()
* @model required="true" ordered="false"
* @generated
*/
ProcessRequirement getProcess();
/**
* Sets the value of the '{@link org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.ProcessPrinciple#getProcess <em>Process</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Process</em>' reference.
* @see #getProcess()
* @generated
*/
void setProcess(ProcessRequirement value);
/**
* Returns the value of the '<em><b>Data Subject</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Data Subject</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Data Subject</em>' reference.
* @see #setDataSubject(DataSubject)
* @see org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.pdp4engReqGDPRPackage#getProcessPrinciple_DataSubject()
* @model required="true" ordered="false"
* @generated
*/
DataSubject getDataSubject();
/**
* Sets the value of the '{@link org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.ProcessPrinciple#getDataSubject <em>Data Subject</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Data Subject</em>' reference.
* @see #getDataSubject()
* @generated
*/
void setDataSubject(DataSubject value);
/**
* Returns the value of the '<em><b>Personal Data</b></em>' reference list.
* The list contents are of type {@link org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.PersonalDataRequirement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Personal Data</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>Personal Data</em>' reference list.
* @see org.eclipse.papyrus.pdp4eng.req.profile.pdp4engReqGDPR.pdp4engReqGDPRPackage#getProcessPrinciple_PersonalData()
* @model required="true" ordered="false"
* @generated
*/
EList<PersonalDataRequirement> getPersonalData();
} // ProcessPrinciple