summaryrefslogtreecommitdiff
path: root/simulator/opendc/opendc-core
diff options
context:
space:
mode:
authorGeorgios Andreadis <info@gandreadis.com>2020-07-02 18:39:28 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-08-24 19:47:21 +0200
commitf119fc78dda4d1e828dde04f378a63a93e3a0a7e (patch)
treebea1eace5d47f21a7ccb835c6a6079bc92e48710 /simulator/opendc/opendc-core
parent7f27a6370a0af25e1bf6ff8f46360c6c26c21e0b (diff)
Add current progress on frontend port
Diffstat (limited to 'simulator/opendc/opendc-core')
-rw-r--r--simulator/opendc/opendc-core/build.gradle.kts2
-rw-r--r--simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt2
-rw-r--r--simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt4
3 files changed, 4 insertions, 4 deletions
diff --git a/simulator/opendc/opendc-core/build.gradle.kts b/simulator/opendc/opendc-core/build.gradle.kts
index 0ac1f1ea..5443f056 100644
--- a/simulator/opendc/opendc-core/build.gradle.kts
+++ b/simulator/opendc/opendc-core/build.gradle.kts
@@ -22,7 +22,7 @@
* SOFTWARE.
*/
-description = "Base model for datacenter simulation"
+description = "Base model for topology simulation"
/* Build configuration */
plugins {
diff --git a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt
index c0424c20..0b2437c6 100644
--- a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt
+++ b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt
@@ -29,7 +29,7 @@ import java.util.UUID
/**
* A representation of a cloud platform such as Amazon Web Services (AWS), Microsoft Azure or Google Cloud.
*
- * @property uid The unique identifier of this datacenter.
+ * @property uid The unique identifier of this topology.
* @property name the name of the platform.
* @property zones The availability zones available on this platform.
*/
diff --git a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt
index 5f5d946b..d8851bcd 100644
--- a/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt
+++ b/simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt
@@ -28,8 +28,8 @@ import com.atlarge.opendc.core.services.ServiceRegistry
import java.util.UUID
/**
- * An isolated location within a datacenter region from which public cloud services operate, roughly equivalent to a
- * single datacenter. Zones contain one or more clusters and secondary storage.
+ * An isolated location within a topology region from which public cloud services operate, roughly equivalent to a
+ * single topology. Zones contain one or more clusters and secondary storage.
*
* This class models *only* the static information of a zone, with dynamic information being contained within the zone's
* actor. During runtime, it's actor acts as a registry for all the cloud services provided by the zone.