Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DNI-Meta-Model
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Descartes Research
DNI-Meta-Model
Commits
7fca4d13
Commit
7fca4d13
authored
7 years ago
by
Stefan Herrnleben
Browse files
Options
Downloads
Patches
Plain Diff
migrate entity type to adaptable entity interface
parent
5b5466c0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tools.descartes.dni.adaptation/model/DNIMM3AP.xcore
+10
-20
10 additions, 20 deletions
tools.descartes.dni.adaptation/model/DNIMM3AP.xcore
tools.descartes.dni.adaptation/plugin.properties
+1
-0
1 addition, 0 deletions
tools.descartes.dni.adaptation/plugin.properties
with
11 additions
and
20 deletions
tools.descartes.dni.adaptation/model/DNIMM3AP.xcore
+
10
−
20
View file @
7fca4d13
...
...
@@ -46,59 +46,49 @@ class NetworkInterfacePerformanceRepository {
contains NetworkInterfacePerformance[] networkInterfacePerformance
}
interface IAdaptableEntity {
interface IAdaptableEntity<E> {
refers E entityType
}
class Node extends IAdaptableEntity {
class Node extends IAdaptableEntity
<tools.descartes.dni.dnimm3.NodeType>
{
refers EndPerformance[] endPerformance
refers IntermediatePerformance[] intermediatePerformance
refers SdnNodePerformance[] sdnNodePerformance
refers NetworkInterface[] networkInterface
refers tools.descartes.dni.dnimm3.NodeType entityType
}
class Link extends IAdaptableEntity {
class Link extends IAdaptableEntity
<tools.descartes.dni.dnimm3.LinkType>
{
refers LinkPerformance[] linkPerformance
refers NetworkInterface[] networkInterface
refers tools.descartes.dni.dnimm3.LinkType entityType
}
class LinkPerformance extends IAdaptableEntity {
class LinkPerformance extends IAdaptableEntity
<tools.descartes.dni.dnimm3.LinkPerformanceType>
{
contains AlternativeVariable propagationDelay
contains AlternativeVariable maximalSupportedBandwidth
refers tools.descartes.dni.dnimm3.LinkPerformanceType entityType
}
class EndPerformance extends IAdaptableEntity {
class EndPerformance extends IAdaptableEntity
<tools.descartes.dni.dnimm3.EndPerformanceType>
{
contains AlternativeVariable softwareLayersDelay
refers tools.descartes.dni.dnimm3.EndPerformanceType entityType
}
class IntermediatePerformance extends IAdaptableEntity {
class IntermediatePerformance extends IAdaptableEntity
<tools.descartes.dni.dnimm3.IntermediatePerformanceType>
{
contains AlternativeVariable forwardingLatency
contains AlternativeVariable switchingCapacityPPS
contains AlternativeVariable forwardingBandwidthBPS
refers tools.descartes.dni.dnimm3.IntermediatePerformanceType entityType
}
class SdnNodePerformance extends IAdaptableEntity {
class SdnNodePerformance extends IAdaptableEntity
<tools.descartes.dni.dnimm3.SdnNodePerformanceType>
{
refers IntermediatePerformance[] softwareSwitchingPerformance
refers IntermediatePerformance[] hardwareSwitchingPerformance
refers tools.descartes.dni.dnimm3.SdnNodePerformanceType entityType
}
class NetworkInterface extends IAdaptableEntity {
class NetworkInterface extends IAdaptableEntity
<tools.descartes.dni.dnimm3.NetworkInterfaceType>
{
refers NetworkInterfacePerformance[] networkInterfacePerformance
refers tools.descartes.dni.dnimm3.NetworkInterfaceType entityType
}
class NetworkInterfacePerformance extends IAdaptableEntity {
class NetworkInterfacePerformance extends IAdaptableEntity
<tools.descartes.dni.dnimm3.NetworkInterfacePerformanceType>
{
contains AlternativeVariable packetProcessingTime
contains AlternativeVariable interfaceThroughput
refers tools.descartes.dni.dnimm3.NetworkInterfacePerformanceType entityType
}
class ProtocolStack extends IAdaptableEntity {
}
interface AlternativeParameterSet<P> {
...
...
This diff is collapsed.
Click to expand it.
tools.descartes.dni.adaptation/plugin.properties
+
1
−
0
View file @
7fca4d13
...
...
@@ -287,3 +287,4 @@ _UI_NetworkInterfacePerformanceRepository_networkInterfacePerformance_feature =
_UI_SdnNodePerformance_softwareSwitchingPerformance_feature
=
Software Switching Performance
_UI_SdnNodePerformance_intermediatePerformance_feature
=
Intermediate Performance
_UI_SdnNodePerformance_hardwareSwitchingPerformance_feature
=
Hardware Switching Performance
_UI_IAdaptableEntity_entityType_feature
=
Entity Type
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment