Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2e7be817a9cd27c9005ad3f6bf204089185ee290 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
 *  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
 *  Gabriel Pedroza (CEA LIST) gabriel.pedroza@cea.fr
 * 
 */
package org.eclipse.papyrus.pdp4eng.designer.utils;

public class ModelProfileNames {
	
	public static String PDPbDProfileName = "pdp4engDesign";
	
	public static String commonGDPRProfileName = "pdp4engCommonGDPR";
	
	public static String PDPbD_Process = "Process";
	
	public static String PDPbD_CallProcess = "CallProcess";
	
	public static String PDPbD_DataStore = "DataStore";
	
	public static String PDPbD_ExternalEntity = "ExternalEntity";
	
	public static String PDPbD_Entity = "Entity";
	
	public static String PDPbD_DataInput = "DataInput";
	
	public static String PDPbD_DataOutput = "DataOutput";
	
	public static String commonGDPR_Purpose = "Purpose";
	
	public static String commonGDPR_Controller = "Controller";
	
	public static String commonGDPR_Processor = "Processor";
	
	public static String commonGDPR_DataSubject = "DataSubject";
	
	public static String commonGDPR_Process = "Process";
	
	public static String commonGDPR_PersonalData = "PersonalData";
	
	public static String commonGDPR_Consent = "Consent";
}

Back to the top