diff options
| author | Georgios Andreadis <info@gandreadis.com> | 2020-07-02 18:39:28 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-08-24 19:47:21 +0200 |
| commit | f119fc78dda4d1e828dde04f378a63a93e3a0a7e (patch) | |
| tree | bea1eace5d47f21a7ccb835c6a6079bc92e48710 /simulator/opendc/opendc-core/src/main | |
| parent | 7f27a6370a0af25e1bf6ff8f46360c6c26c21e0b (diff) | |
Add current progress on frontend port
Diffstat (limited to 'simulator/opendc/opendc-core/src/main')
| -rw-r--r-- | simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Platform.kt | 2 | ||||
| -rw-r--r-- | simulator/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Zone.kt | 4 |
2 files changed, 3 insertions, 3 deletions
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. |
