-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #708 from eclipse-passage/568195
Bug 568195 - [Passage][Operator] unify issued licenses storage
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
bundles/org.eclipse.passage.lic.shipments.ecore/model/shipments.ecore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ecore:EPackage xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:ecore="http://www.eclipse.org/emf/2002/Ecore" name="shipments" nsURI="http://www.eclipse.org/passage/lic/shipments/0.1.0" | ||
nsPrefix="org.eclipse.passage.lic"> | ||
<eClassifiers xsi:type="ecore:EClass" name="Personal"> | ||
<eStructuralFeatures xsi:type="ecore:EReference" name="licenses" upperBound="-1" | ||
eType="#//PersonalLicense" containment="true"/> | ||
</eClassifiers> | ||
<eClassifiers xsi:type="ecore:EClass" name="Floating"> | ||
<eStructuralFeatures xsi:type="ecore:EReference" name="licenses" upperBound="-1" | ||
eType="#//FloatingLicense" containment="true"/> | ||
</eClassifiers> | ||
<eClassifiers xsi:type="ecore:EClass" name="PersonalLicense"> | ||
<eStructuralFeatures xsi:type="ecore:EAttribute" name="user" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> | ||
<eStructuralFeatures xsi:type="ecore:EAttribute" name="license" lowerBound="1" | ||
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> | ||
</eClassifiers> | ||
<eClassifiers xsi:type="ecore:EClass" name="FloatingLicense"> | ||
<eStructuralFeatures xsi:type="ecore:EAttribute" name="company" lowerBound="1" | ||
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> | ||
<eStructuralFeatures xsi:type="ecore:EAttribute" name="license" lowerBound="1" | ||
eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/> | ||
</eClassifiers> | ||
</ecore:EPackage> |