Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/SecurityPackage.java')
-rw-r--r--plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/SecurityPackage.java48
1 files changed, 38 insertions, 10 deletions
diff --git a/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/SecurityPackage.java b/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/SecurityPackage.java
index 7fca6bc1b6..9091c471fd 100644
--- a/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/SecurityPackage.java
+++ b/plugins/org.eclipse.emf.cdo.security/src/org/eclipse/emf/cdo/security/SecurityPackage.java
@@ -526,13 +526,22 @@ public interface SecurityPackage extends EPackage
int USER__ALL_ROLES = ASSIGNEE_FEATURE_COUNT + 2;
/**
+ * The feature id for the '<em><b>All Checks</b></em>' reference list.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ * @ordered
+ */
+ int USER__ALL_CHECKS = ASSIGNEE_FEATURE_COUNT + 3;
+
+ /**
* The feature id for the '<em><b>Unassigned Roles</b></em>' reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
- int USER__UNASSIGNED_ROLES = ASSIGNEE_FEATURE_COUNT + 3;
+ int USER__UNASSIGNED_ROLES = ASSIGNEE_FEATURE_COUNT + 4;
/**
* The feature id for the '<em><b>Label</b></em>' attribute.
@@ -541,7 +550,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__LABEL = ASSIGNEE_FEATURE_COUNT + 4;
+ int USER__LABEL = ASSIGNEE_FEATURE_COUNT + 5;
/**
* The feature id for the '<em><b>First Name</b></em>' attribute.
@@ -550,7 +559,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__FIRST_NAME = ASSIGNEE_FEATURE_COUNT + 5;
+ int USER__FIRST_NAME = ASSIGNEE_FEATURE_COUNT + 6;
/**
* The feature id for the '<em><b>Last Name</b></em>' attribute.
@@ -559,7 +568,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__LAST_NAME = ASSIGNEE_FEATURE_COUNT + 6;
+ int USER__LAST_NAME = ASSIGNEE_FEATURE_COUNT + 7;
/**
* The feature id for the '<em><b>Email</b></em>' attribute.
@@ -568,7 +577,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__EMAIL = ASSIGNEE_FEATURE_COUNT + 7;
+ int USER__EMAIL = ASSIGNEE_FEATURE_COUNT + 8;
/**
* The feature id for the '<em><b>Default Permission Override</b></em>' attribute.
@@ -577,7 +586,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__DEFAULT_PERMISSION_OVERRIDE = ASSIGNEE_FEATURE_COUNT + 8;
+ int USER__DEFAULT_PERMISSION_OVERRIDE = ASSIGNEE_FEATURE_COUNT + 9;
/**
* The feature id for the '<em><b>Default Permission</b></em>' attribute.
@@ -586,7 +595,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__DEFAULT_PERMISSION = ASSIGNEE_FEATURE_COUNT + 9;
+ int USER__DEFAULT_PERMISSION = ASSIGNEE_FEATURE_COUNT + 10;
/**
* The feature id for the '<em><b>Locked</b></em>' attribute.
@@ -595,7 +604,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__LOCKED = ASSIGNEE_FEATURE_COUNT + 10;
+ int USER__LOCKED = ASSIGNEE_FEATURE_COUNT + 11;
/**
* The feature id for the '<em><b>Password</b></em>' containment reference.
@@ -604,7 +613,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER__PASSWORD = ASSIGNEE_FEATURE_COUNT + 11;
+ int USER__PASSWORD = ASSIGNEE_FEATURE_COUNT + 12;
/**
* The number of structural features of the '<em>User</em>' class.
@@ -613,7 +622,7 @@ public interface SecurityPackage extends EPackage
* @generated
* @ordered
*/
- int USER_FEATURE_COUNT = ASSIGNEE_FEATURE_COUNT + 12;
+ int USER_FEATURE_COUNT = ASSIGNEE_FEATURE_COUNT + 13;
/**
* The meta object id for the '{@link org.eclipse.emf.cdo.security.impl.UserPasswordImpl <em>User Password</em>}' class.
@@ -1162,6 +1171,17 @@ public interface SecurityPackage extends EPackage
EReference getUser_AllRoles();
/**
+ * Returns the meta object for the reference list '{@link org.eclipse.emf.cdo.security.User#getAllChecks <em>All Checks</em>}'.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @return the meta object for the reference list '<em>All Checks</em>'.
+ * @see org.eclipse.emf.cdo.security.User#getAllChecks()
+ * @see #getUser()
+ * @generated
+ */
+ EReference getUser_AllChecks();
+
+ /**
* Returns the meta object for the reference list '{@link org.eclipse.emf.cdo.security.User#getUnassignedRoles <em>Unassigned Roles</em>}'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
@@ -1674,6 +1694,14 @@ public interface SecurityPackage extends EPackage
EReference USER__ALL_ROLES = eINSTANCE.getUser_AllRoles();
/**
+ * The meta object literal for the '<em><b>All Checks</b></em>' reference list feature.
+ * <!-- begin-user-doc -->
+ * <!-- end-user-doc -->
+ * @generated
+ */
+ EReference USER__ALL_CHECKS = eINSTANCE.getUser_AllChecks();
+
+ /**
* The meta object literal for the '<em><b>Unassigned Roles</b></em>' reference list feature.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->

Back to the top