Search in sources :

Example 21 with Tenant

use of org.openremote.model.security.Tenant in project openremote by openremote.

the class KeycloakDemoSetup method onStart.

@Override
public void onStart() throws Exception {
    super.onStart();
    // Tenants
    masterTenant = identityService.getIdentityProvider().getTenantForRealm(Constants.MASTER_REALM);
    Tenant customerA = new Tenant();
    customerA.setRealm("customerA");
    customerA.setDisplayName("Customer A");
    customerA.setEnabled(true);
    keycloakProvider.createTenant(new ClientRequestInfo(null, accessToken), customerA, emailConfig);
    customerATenant = keycloakProvider.getTenantForRealm(customerA.getRealm());
    Tenant customerB = new Tenant();
    customerB.setRealm("customerB");
    customerB.setDisplayName("Customer B");
    customerB.setEnabled(true);
    keycloakProvider.createTenant(new ClientRequestInfo(null, accessToken), customerB, emailConfig);
    customerBTenant = keycloakProvider.getTenantForRealm(customerB.getRealm());
    // Users
    String masterClientObjectId = getClientObjectId(masterClientsResource);
    RolesResource masterRolesResource = masterClientsResource.get(masterClientObjectId).roles();
    UserRepresentation testuser1 = new UserRepresentation();
    testuser1.setUsername("testuser1");
    testuser1.setFirstName("Testuserfirst");
    testuser1.setLastName("Testuserlast");
    testuser1.setEnabled(true);
    masterUsersResource.create(testuser1);
    testuser1 = masterUsersResource.search("testuser1", null, null, null, null, null).get(0);
    this.testuser1Id = testuser1.getId();
    CredentialRepresentation testuser1Credentials = new CredentialRepresentation();
    testuser1Credentials.setType("password");
    testuser1Credentials.setValue("testuser1");
    testuser1Credentials.setTemporary(false);
    masterUsersResource.get(testuser1.getId()).resetPassword(testuser1Credentials);
    masterUsersResource.get(testuser1.getId()).roles().clientLevel(masterClientObjectId).add(Arrays.asList(masterRolesResource.get(ClientRole.WRITE_USER.getValue()).toRepresentation(), masterRolesResource.get(ClientRole.READ_MAP.getValue()).toRepresentation(), masterRolesResource.get(ClientRole.READ_ASSETS.getValue()).toRepresentation(), masterRolesResource.get(ClientRole.READ_RULES.getValue()).toRepresentation(), masterRolesResource.get(ClientRole.WRITE_ASSETS.getValue()).toRepresentation(), masterRolesResource.get(ClientRole.WRITE_RULES.getValue()).toRepresentation()));
    LOG.info("Added demo user '" + testuser1.getUsername() + "' with password '" + testuser1Credentials.getValue() + "'");
    UsersResource customerAUsersResource = keycloakProvider.getRealms(accessToken).realm("customerA").users();
    ClientsResource customerAClientsResource = keycloakProvider.getRealms(accessToken).realm("customerA").clients();
    String customerAClientObjectId = getClientObjectId(customerAClientsResource);
    RolesResource customerARolesResource = customerAClientsResource.get(customerAClientObjectId).roles();
    UserRepresentation testuser2 = new UserRepresentation();
    testuser2.setUsername("testuser2");
    testuser2.setFirstName("Testuserfirst");
    testuser2.setLastName("Testuserlast");
    testuser2.setEnabled(true);
    customerAUsersResource.create(testuser2);
    testuser2 = customerAUsersResource.search("testuser2", null, null, null, null, null).get(0);
    this.testuser2Id = testuser2.getId();
    CredentialRepresentation testuser2Credentials = new CredentialRepresentation();
    testuser2Credentials.setType("password");
    testuser2Credentials.setValue("testuser2");
    testuser2Credentials.setTemporary(false);
    customerAUsersResource.get(testuser2.getId()).resetPassword(testuser2Credentials);
    customerAUsersResource.get(testuser2.getId()).roles().clientLevel(customerAClientObjectId).add(Arrays.asList(customerARolesResource.get(ClientRole.WRITE_USER.getValue()).toRepresentation(), customerARolesResource.get(ClientRole.READ_MAP.getValue()).toRepresentation(), customerARolesResource.get(ClientRole.READ_ASSETS.getValue()).toRepresentation()));
    LOG.info("Added demo user '" + testuser2.getUsername() + "' with password '" + testuser2Credentials.getValue() + "'");
    UserRepresentation testuser3 = new UserRepresentation();
    testuser3.setUsername("testuser3");
    testuser3.setFirstName("Testuserfirst");
    testuser3.setLastName("Testuserlast");
    testuser3.setEnabled(true);
    customerAUsersResource.create(testuser3);
    testuser3 = customerAUsersResource.search("testuser3", null, null, null, null, null).get(0);
    this.testuser3Id = testuser3.getId();
    CredentialRepresentation testuser3Credentials = new CredentialRepresentation();
    testuser3Credentials.setType("password");
    testuser3Credentials.setValue("testuser3");
    testuser3Credentials.setTemporary(false);
    customerAUsersResource.get(testuser3.getId()).resetPassword(testuser3Credentials);
    customerAUsersResource.get(testuser3.getId()).roles().clientLevel(customerAClientObjectId).add(Arrays.asList(customerARolesResource.get(ClientRole.WRITE_USER.getValue()).toRepresentation(), customerARolesResource.get(ClientRole.READ_MAP.getValue()).toRepresentation(), customerARolesResource.get(ClientRole.READ_ASSETS.getValue()).toRepresentation(), customerARolesResource.get(ClientRole.WRITE_RULES.getValue()).toRepresentation(), customerARolesResource.get(ClientRole.WRITE_ASSETS.getValue()).toRepresentation(), customerARolesResource.get(ClientRole.READ_RULES.getValue()).toRepresentation()));
    LOG.info("Added demo user '" + testuser3.getUsername() + "' with password '" + testuser3Credentials.getValue() + "'");
}
Also used : CredentialRepresentation(org.keycloak.representations.idm.CredentialRepresentation) Tenant(org.openremote.model.security.Tenant) UsersResource(org.keycloak.admin.client.resource.UsersResource) ClientsResource(org.keycloak.admin.client.resource.ClientsResource) ClientRequestInfo(org.openremote.container.web.ClientRequestInfo) RolesResource(org.keycloak.admin.client.resource.RolesResource) UserRepresentation(org.keycloak.representations.idm.UserRepresentation)

Example 22 with Tenant

use of org.openremote.model.security.Tenant in project openremote by openremote.

the class ManagerTestAgentSetup method onStart.

@Override
public void onStart() throws Exception {
    KeycloakTestSetup keycloakTestSetup = setupService.getTaskOfType(KeycloakTestSetup.class);
    Tenant masterTenant = keycloakTestSetup.masterTenant;
    masterRealm = masterTenant.getRealm();
    if (knx) {
        LOG.info("Enable KNX demo agent, gateway/local IP: " + knxGatewayIp + "/" + knxLocalIp);
        KNXAgent agent = new KNXAgent("Demo KNX agent").setRealm(masterRealm).setHost(knxGatewayIp).setBindHost(knxLocalIp);
        agent = assetStorageService.merge(agent);
    }
    if (velbus) {
        LOG.info("Enable Velbus demo agent, COM port: " + velbusPort);
        VelbusTCPAgent agent = new VelbusTCPAgent("Demo VELBUS agent").setRealm(masterRealm).setHost(velbusHost).setPort(velbusPort);
        agent = assetStorageService.merge(agent);
    }
}
Also used : Tenant(org.openremote.model.security.Tenant) VelbusTCPAgent(org.openremote.agent.protocol.velbus.VelbusTCPAgent) KNXAgent(org.openremote.agent.protocol.knx.KNXAgent)

Example 23 with Tenant

use of org.openremote.model.security.Tenant in project openremote by openremote.

the class ManagerDemoSetup method onStart.

@Override
public void onStart() throws Exception {
    super.onStart();
    KeycloakDemoSetup keycloakDemoSetup = setupService.getTaskOfType(KeycloakDemoSetup.class);
    Tenant masterTenant = keycloakDemoSetup.masterTenant;
    Tenant tenantCity = keycloakDemoSetup.tenantCity;
    masterRealm = masterTenant.getRealm();
    this.realmCityTenant = tenantCity.getRealm();
    // ################################ Demo assets for 'master' realm ###################################
    // ################################ Link demo users and assets ###################################
    // ################################ Make users restricted ###################################
    // ################################ Realm smartcity ###################################
    SimulatorAgent smartcitySimulatorAgent = new SimulatorAgent("Simulator agent");
    smartcitySimulatorAgent.setRealm(this.realmCityTenant);
    smartcitySimulatorAgent = assetStorageService.merge(smartcitySimulatorAgent);
    smartcitySimulatorAgentId = smartcitySimulatorAgent.getId();
    LocalTime midnight = LocalTime.of(0, 0);
    // ################################ Realm smartcity - Energy Management ###################################
    ThingAsset energyManagement = new ThingAsset("Energy management");
    energyManagement.setRealm(this.realmCityTenant);
    energyManagement.getAttributes().addOrReplace(new Attribute<>("powerTotalProducers", ValueType.NUMBER).addOrReplaceMeta(new MetaItem<>(MetaItemType.UNITS, Constants.units(Constants.UNITS_KILO, Constants.UNITS_WATT)), new MetaItem<>(MetaItemType.READ_ONLY, true), new MetaItem<>(MetaItemType.STORE_DATA_POINTS, true), new MetaItem<>(MetaItemType.RULE_STATE, true)), new Attribute<>("powerTotalConsumers", ValueType.NUMBER).addOrReplaceMeta(new MetaItem<>(MetaItemType.UNITS, Constants.units(Constants.UNITS_KILO, Constants.UNITS_WATT)), new MetaItem<>(MetaItemType.READ_ONLY, true), new MetaItem<>(MetaItemType.STORE_DATA_POINTS, true), new MetaItem<>(MetaItemType.RULE_STATE, true)));
    energyManagement.setId(UniqueIdentifierGenerator.generateId(energyManagement.getName()));
    energyManagement = assetStorageService.merge(energyManagement);
    energyManagementId = energyManagement.getId();
    // ### De Rotterdam ###
    BuildingAsset building1Asset = new BuildingAsset("De Rotterdam");
    building1Asset.setParent(energyManagement);
    building1Asset.getAttributes().addOrReplace(new Attribute<>(BuildingAsset.STREET, "Wilhelminakade 139"), new Attribute<>(BuildingAsset.POSTAL_CODE, "3072 AP"), new Attribute<>(BuildingAsset.CITY, "Rotterdam"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"), new Attribute<>(Asset.LOCATION, new GeoJSONPoint(4.488324, 51.906577)), new Attribute<>("powerBalance", ValueType.NUMBER).addMeta(new MetaItem<>(MetaItemType.UNITS, Constants.units(Constants.UNITS_KILO, Constants.UNITS_WATT)), new MetaItem<>(MetaItemType.READ_ONLY), new MetaItem<>(MetaItemType.RULE_STATE), new MetaItem<>(MetaItemType.STORE_DATA_POINTS)));
    building1Asset.setId(UniqueIdentifierGenerator.generateId(building1Asset.getName() + "building"));
    building1Asset = assetStorageService.merge(building1Asset);
    ElectricityStorageAsset storage1Asset = createDemoElectricityStorageAsset("Battery De Rotterdam", building1Asset, new GeoJSONPoint(4.488324, 51.906577));
    storage1Asset.setManufacturer("Super-B");
    storage1Asset.setModel("Nomia");
    storage1Asset.setId(UniqueIdentifierGenerator.generateId(storage1Asset.getName()));
    storage1Asset = assetStorageService.merge(storage1Asset);
    ElectricityConsumerAsset consumption1Asset = createDemoElectricityConsumerAsset("Consumption De Rotterdam", building1Asset, new GeoJSONPoint(4.487519, 51.906544));
    consumption1Asset.getAttribute(ElectricityConsumerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 23), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 21), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 20), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 22), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 21), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 22), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 41), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 54), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 63), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 76), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 80), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 79), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 84), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 76), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 82), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 83), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 77), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 71), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 63), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 41), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 27), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 22), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 24), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 20) })));
    });
    consumption1Asset.setId(UniqueIdentifierGenerator.generateId(consumption1Asset.getName()));
    consumption1Asset = assetStorageService.merge(consumption1Asset);
    ElectricityProducerSolarAsset production1Asset = createDemoElectricitySolarProducerAsset("Solar De Rotterdam", building1Asset, new GeoJSONPoint(4.488592, 51.907047));
    production1Asset.setManufacturer("AEG");
    production1Asset.setModel("AS-P60");
    production1Asset.getAttribute(ElectricityProducerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), -1), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), -10), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), -15), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), -39), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), -52), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), -50), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), -48), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), -36), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), -23), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), -24), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), -18), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), -10), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), -8), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), -3), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), -1), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0) })));
    });
    production1Asset.setEnergyExportTotal(152689d);
    production1Asset.setPowerExportMax(89.6);
    production1Asset.setEfficiencyExport(93);
    production1Asset.setPanelOrientation(ElectricityProducerSolarAsset.PanelOrientation.EAST_WEST);
    production1Asset.setPanelAzimuth(30);
    production1Asset.setPanelPitch(20);
    production1Asset.setId(UniqueIdentifierGenerator.generateId(production1Asset.getName()));
    production1Asset = assetStorageService.merge(production1Asset);
    // ### Stadhuis ###
    BuildingAsset building2Asset = new BuildingAsset("Stadhuis");
    building2Asset.setParent(energyManagement);
    building2Asset.getAttributes().addOrReplace(new Attribute<>(BuildingAsset.STREET, "Coolsingel 40"), new Attribute<>(BuildingAsset.POSTAL_CODE, "3011 AD"), new Attribute<>(BuildingAsset.CITY, "Rotterdam"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"), new Attribute<>(Asset.LOCATION, new GeoJSONPoint(4.47985, 51.92274)));
    building2Asset.setId(UniqueIdentifierGenerator.generateId(building2Asset.getName() + "building"));
    building2Asset = assetStorageService.merge(building2Asset);
    ElectricityStorageAsset storage2Asset = createDemoElectricityStorageAsset("Battery Stadhuis", building2Asset, new GeoJSONPoint(4.47985, 51.92274));
    storage2Asset.setManufacturer("LG Chem");
    storage2Asset.setModel("ESS Industrial");
    storage2Asset.setId(UniqueIdentifierGenerator.generateId(storage2Asset.getName()));
    storage2Asset = assetStorageService.merge(storage2Asset);
    ElectricityConsumerAsset consumption2Asset = createDemoElectricityConsumerAsset("Consumption Stadhuis", building2Asset, new GeoJSONPoint(4.47933, 51.92259));
    consumption2Asset.getAttribute(ElectricityConsumerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 8), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 9), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 8), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 9), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 12), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 22), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 30), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 36), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 39), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 32), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 36), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 44), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 47), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 44), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 38), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 38), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 34), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 33), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 23), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 13), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 9), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 8) })));
    });
    consumption2Asset.setId(UniqueIdentifierGenerator.generateId(consumption2Asset.getName()));
    consumption2Asset = assetStorageService.merge(consumption2Asset);
    ElectricityProducerSolarAsset production2Asset = createDemoElectricitySolarProducerAsset("Solar Stadhuis", building2Asset, new GeoJSONPoint(4.47945, 51.92301));
    production2Asset.getAttribute(ElectricityProducerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), -1), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), -2), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), -3), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), -8), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), -14), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), -12), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), -10), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), -7), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), -5), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), -7), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), -5), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), -3), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), -2), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), -1), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), -1), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0) })));
    });
    production2Asset.setEnergyExportTotal(88961d);
    production2Asset.setPowerExportMax(19.2);
    production2Asset.setEfficiencyExport(79);
    production2Asset.setPanelOrientation(ElectricityProducerSolarAsset.PanelOrientation.SOUTH);
    production2Asset.setPanelAzimuth(10);
    production2Asset.setPanelPitch(40);
    production2Asset.setManufacturer("Solarwatt");
    production2Asset.setModel("EasyIn 60M");
    production2Asset.setId(UniqueIdentifierGenerator.generateId(production2Asset.getName()));
    production2Asset = assetStorageService.merge(production2Asset);
    // ### Markthal ###
    BuildingAsset building3Asset = new BuildingAsset("Markthal");
    building3Asset.setParent(energyManagement);
    building3Asset.getAttributes().addOrReplace(new Attribute<>(BuildingAsset.STREET, "Dominee Jan Scharpstraat 298"), new Attribute<>(BuildingAsset.POSTAL_CODE, "3011 GZ"), new Attribute<>(BuildingAsset.CITY, "Rotterdam"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"), new Attribute<>(Asset.LOCATION, new GeoJSONPoint(4.47945, 51.92301)), new Attribute<>("allChargersInUse", ValueType.BOOLEAN).addMeta(new MetaItem<>(MetaItemType.READ_ONLY)));
    building3Asset.setId(UniqueIdentifierGenerator.generateId(building3Asset.getName() + "building"));
    building3Asset = assetStorageService.merge(building3Asset);
    ElectricityProducerSolarAsset production3Asset = createDemoElectricitySolarProducerAsset("Solar Markthal", building3Asset, new GeoJSONPoint(4.47945, 51.92301));
    production3Asset.getAttribute(ElectricityProducerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), -2), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), -6), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), -10), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), -13), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), -21), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), -14), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), -17), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), -10), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), -9), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), -7), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), -5), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), -4), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), -2), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), -1), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0) })));
    });
    production3Asset.setEnergyExportTotal(24134d);
    production3Asset.setPowerExportMax(29.8);
    production3Asset.setEfficiencyExport(91);
    production3Asset.setPanelOrientation(ElectricityProducerSolarAsset.PanelOrientation.SOUTH);
    production3Asset.setManufacturer("Sunpower");
    production3Asset.setModel("E20-327");
    production3Asset.setPanelAzimuth(10);
    production3Asset.setPanelPitch(5);
    production3Asset.setId(UniqueIdentifierGenerator.generateId(production3Asset.getName()));
    production3Asset = assetStorageService.merge(production3Asset);
    ElectricityChargerAsset charger1Asset = createDemoElectricityChargerAsset("Charger 1 Markthal", building3Asset, new GeoJSONPoint(4.486143, 51.920058));
    charger1Asset.setPower(0d);
    charger1Asset.getAttributes().getOrCreate(ElectricityChargerAsset.POWER).addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 2), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 5), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 10), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 5), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 15), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 32), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 35), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 17), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 9), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0) })));
    charger1Asset.setManufacturer("Allego");
    charger1Asset.setModel("HPC");
    charger1Asset.setId(UniqueIdentifierGenerator.generateId(charger1Asset.getName()));
    charger1Asset = assetStorageService.merge(charger1Asset);
    ElectricityChargerAsset charger2Asset = createDemoElectricityChargerAsset("Charger 2 Markthal", building3Asset, new GeoJSONPoint(4.486188, 51.919957));
    charger2Asset.setPower(0d);
    charger2Asset.getAttributes().getOrCreate(ElectricityChargerAsset.POWER).addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 5), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 11), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 5), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 10), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 17), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 14), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 9), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 4), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 28), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 38), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 32), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 26), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 13), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0) })));
    charger2Asset.setManufacturer("Bosch");
    charger2Asset.setModel("EV800");
    charger2Asset.setId(UniqueIdentifierGenerator.generateId(charger2Asset.getName()));
    charger2Asset = assetStorageService.merge(charger2Asset);
    ElectricityChargerAsset charger3Asset = createDemoElectricityChargerAsset("Charger 3 Markthal", building3Asset, new GeoJSONPoint(4.486232, 51.919856));
    charger3Asset.setPower(0d);
    charger3Asset.getAttributes().getOrCreate(ElectricityChargerAsset.POWER).addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 4), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 4), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 9), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 2), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 18), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 4), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 29), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 34), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 22), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 14), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0) })));
    charger3Asset.setManufacturer("Siemens");
    charger3Asset.setModel("CPC 50");
    charger3Asset.setId(UniqueIdentifierGenerator.generateId(charger3Asset.getName()));
    charger3Asset = assetStorageService.merge(charger3Asset);
    ElectricityChargerAsset charger4Asset = createDemoElectricityChargerAsset("Charger 4 Markthal", building3Asset, new GeoJSONPoint(4.486286, 51.919733));
    charger4Asset.setPower(0d);
    charger4Asset.getAttributes().getOrCreate(ElectricityChargerAsset.POWER).addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 3), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 4), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 17), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 15), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 8), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 16), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 4), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 15), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 34), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 30), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 11), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 16), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 4) })));
    charger4Asset.setManufacturer("SemaConnect");
    charger4Asset.setModel("The Series 6");
    charger4Asset.setId(UniqueIdentifierGenerator.generateId(charger4Asset.getName()));
    charger4Asset = assetStorageService.merge(charger4Asset);
    // ### Erasmianum ###
    BuildingAsset building4Asset = new BuildingAsset("Erasmianum");
    building4Asset.setParent(energyManagement);
    building4Asset.getAttributes().addOrReplace(new Attribute<>(BuildingAsset.STREET, "Wytemaweg 25"), new Attribute<>(BuildingAsset.POSTAL_CODE, "3015 CN"), new Attribute<>(BuildingAsset.CITY, "Rotterdam"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"), new Attribute<>(Asset.LOCATION, new GeoJSONPoint(4.468324, 51.912062)));
    building4Asset.setId(UniqueIdentifierGenerator.generateId(building4Asset.getName() + "building"));
    building4Asset = assetStorageService.merge(building4Asset);
    ElectricityConsumerAsset consumption4Asset = createDemoElectricityConsumerAsset("Consumption Erasmianum", building4Asset, new GeoJSONPoint(4.468324, 51.912062));
    consumption4Asset.getAttribute(ElectricityConsumerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 5), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 5), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 6), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 9), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 23), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 37), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 41), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 47), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 49), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 51), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 43), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 48), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 45), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 46), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 41), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 38), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 30), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 19), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 15), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 6) })));
    });
    consumption4Asset.setId(UniqueIdentifierGenerator.generateId(consumption4Asset.getName()));
    consumption4Asset = assetStorageService.merge(consumption4Asset);
    // ### Oostelijk zwembad ###
    BuildingAsset building5Asset = new BuildingAsset("Oostelijk zwembad");
    building5Asset.setParent(energyManagement);
    building5Asset.getAttributes().addOrReplace(new Attribute<>(BuildingAsset.STREET, "Gerdesiaweg 480"), new Attribute<>(BuildingAsset.POSTAL_CODE, "3061 RA"), new Attribute<>(BuildingAsset.CITY, "Rotterdam"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"), new Attribute<>(Asset.LOCATION, new GeoJSONPoint(4.498048, 51.925770)));
    building5Asset.setId(UniqueIdentifierGenerator.generateId(building5Asset.getName() + "building"));
    building5Asset = assetStorageService.merge(building5Asset);
    ElectricityConsumerAsset consumption5Asset = createDemoElectricityConsumerAsset("Consumption Zwembad", building5Asset, new GeoJSONPoint(4.498048, 51.925770));
    consumption5Asset.getAttribute(ElectricityConsumerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 16), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 16), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 15), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 16), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 17), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 16), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 24), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 35), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 32), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 33), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 34), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 33), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 34), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 31), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 36), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 34), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 32), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 37), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 38), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 37), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 38), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 35), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 24), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 19) })));
    });
    consumption5Asset.setId(UniqueIdentifierGenerator.generateId(consumption5Asset.getName()));
    consumption5Asset = assetStorageService.merge(consumption5Asset);
    ElectricityProducerSolarAsset production5Asset = createDemoElectricitySolarProducerAsset("Solar Zwembad", building5Asset, new GeoJSONPoint(4.498281, 51.925507));
    production5Asset.getAttribute(ElectricityProducerAsset.POWER).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), -1), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), -3), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), -8), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), -30), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), -44), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), -42), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), -41), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), -29), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), -19), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), -16), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), -11), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), -4), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), -3), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), -2), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 0), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0) })));
    });
    production5Asset.setEnergyExportTotal(23461d);
    production5Asset.setPowerExportMax(76.2);
    production5Asset.setEfficiencyExport(86);
    production5Asset.setPanelOrientation(ElectricityProducerSolarAsset.PanelOrientation.SOUTH);
    production5Asset.setManufacturer("S-Energy");
    production5Asset.setModel("SN260P-10");
    production5Asset.setPanelAzimuth(50);
    production5Asset.setPanelPitch(15);
    production5Asset.setId(UniqueIdentifierGenerator.generateId(production5Asset.getName()));
    production5Asset = assetStorageService.merge(production5Asset);
    // ### Weather ###
    HTTPAgent weatherHttpApiAgent = new HTTPAgent("Weather Agent");
    weatherHttpApiAgent.setParent(energyManagement);
    weatherHttpApiAgent.setBaseURI("https://api.openweathermap.org/data/2.5/");
    MultivaluedStringMap queryParams = new MultivaluedStringMap();
    queryParams.put("appid", Collections.singletonList("c3ecbf09be5267cd280676a01acd3360"));
    queryParams.put("lat", Collections.singletonList("51.918849"));
    queryParams.put("lon", Collections.singletonList("4.463250"));
    queryParams.put("units", Collections.singletonList("metric"));
    weatherHttpApiAgent.setRequestQueryParameters(queryParams);
    MultivaluedStringMap headers = new MultivaluedStringMap();
    headers.put("Accept", Collections.singletonList("application/json"));
    weatherHttpApiAgent.setRequestHeaders(headers);
    weatherHttpApiAgent = assetStorageService.merge(weatherHttpApiAgent);
    weatherHttpApiAgentId = weatherHttpApiAgent.getId();
    WeatherAsset weather = new WeatherAsset("Weather");
    weather.setParent(energyManagement);
    weather.setId(UniqueIdentifierGenerator.generateId(weather.getName()));
    HTTPAgentLink agentLink = new HTTPAgentLink(weatherHttpApiAgentId);
    agentLink.setPath("weather");
    agentLink.setPollingMillis((int) halfHourInMillis);
    weather.getAttributes().addOrReplace(new Attribute<>("currentWeather", ValueType.JSON_OBJECT).addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, agentLink), new MetaItem<>(MetaItemType.LABEL, "Open Weather Map API weather end point"), new MetaItem<>(MetaItemType.READ_ONLY, true), new MetaItem<>(MetaItemType.STORE_DATA_POINTS, false), new MetaItem<>(MetaItemType.RULE_STATE, false), new MetaItem<>(MetaItemType.ATTRIBUTE_LINKS, new AttributeLink[] { createWeatherApiAttributeLink(weather.getId(), "main", "temp", "temperature"), createWeatherApiAttributeLink(weather.getId(), "main", "humidity", "humidity"), createWeatherApiAttributeLink(weather.getId(), "wind", "speed", "windSpeed"), createWeatherApiAttributeLink(weather.getId(), "wind", "deg", "windDirection") })));
    weather.getAttribute("windSpeed").ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.STORE_DATA_POINTS), new MetaItem<>(MetaItemType.RULE_STATE));
    });
    weather.getAttribute("temperature").ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.STORE_DATA_POINTS), new MetaItem<>(MetaItemType.RULE_STATE));
    });
    weather.getAttribute("windDirection").ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.STORE_DATA_POINTS), new MetaItem<>(MetaItemType.RULE_STATE));
    });
    weather.getAttribute("humidity").ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.STORE_DATA_POINTS), new MetaItem<>(MetaItemType.RULE_STATE));
    });
    new Attribute<>(Asset.LOCATION, new GeoJSONPoint(4.463250, 51.918849));
    weather = assetStorageService.merge(weather);
    // ################################ Realm smartcity - Environment monitor ###################################
    Asset<?> environmentMonitor = new ThingAsset("Environment monitor");
    environmentMonitor.setRealm(this.realmCityTenant);
    environmentMonitor.setId(UniqueIdentifierGenerator.generateId(environmentMonitor.getName()));
    environmentMonitor = assetStorageService.merge(environmentMonitor);
    EnvironmentSensorAsset environment1Asset = createDemoEnvironmentAsset("Oudehaven", environmentMonitor, new GeoJSONPoint(4.49313, 51.91885), () -> new SimulatorAgentLink(smartcitySimulatorAgentId));
    EnvironmentSensorAsset environment2Asset = createDemoEnvironmentAsset("Kaappark", environmentMonitor, new GeoJSONPoint(4.480434, 51.899287), () -> new SimulatorAgentLink(smartcitySimulatorAgentId));
    EnvironmentSensorAsset environment3Asset = createDemoEnvironmentAsset("Museumpark", environmentMonitor, new GeoJSONPoint(4.472457, 51.912047), () -> new SimulatorAgentLink(smartcitySimulatorAgentId));
    EnvironmentSensorAsset environment4Asset = createDemoEnvironmentAsset("Eendrachtsplein", environmentMonitor, new GeoJSONPoint(4.473599, 51.916292), () -> new SimulatorAgentLink(smartcitySimulatorAgentId));
    EnvironmentSensorAsset[] environmentArray = { environment1Asset, environment2Asset, environment3Asset, environment4Asset };
    for (EnvironmentSensorAsset asset : environmentArray) {
        asset.setManufacturer("Intemo");
        asset.setModel("Josene outdoor");
        asset.getAttribute(EnvironmentSensorAsset.OZONE).ifPresent(assetAttribute -> {
            assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), getRandomNumberInRange(90, 110)), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), getRandomNumberInRange(90, 110)), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), getRandomNumberInRange(90, 110)), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), getRandomNumberInRange(90, 110)), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), getRandomNumberInRange(115, 125)), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), getRandomNumberInRange(115, 125)), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), getRandomNumberInRange(90, 110)), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), getRandomNumberInRange(90, 110)), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), getRandomNumberInRange(80, 90)) })));
        });
        asset.setId(UniqueIdentifierGenerator.generateId(asset.getName()));
        asset = assetStorageService.merge(asset);
    }
    GroundwaterSensorAsset groundwater1Asset = createDemoGroundwaterAsset("Leuvehaven", environmentMonitor, new GeoJSONPoint(4.48413, 51.91431));
    GroundwaterSensorAsset groundwater2Asset = createDemoGroundwaterAsset("Steiger", environmentMonitor, new GeoJSONPoint(4.482887, 51.920082));
    GroundwaterSensorAsset groundwater3Asset = createDemoGroundwaterAsset("Stadhuis", environmentMonitor, new GeoJSONPoint(4.480876, 51.923212));
    GroundwaterSensorAsset[] groundwaterArray = { groundwater1Asset, groundwater2Asset, groundwater3Asset };
    for (GroundwaterSensorAsset asset : groundwaterArray) {
        asset.setManufacturer("Eijkelkamp");
        asset.setModel("TeleControlNet");
        asset.getAttribute(GroundwaterSensorAsset.SOIL_TEMPERATURE).ifPresent(assetAttribute -> {
            assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 12.2), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 12.1), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 12.0), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 11.8), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 11.7), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 11.7), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 11.9), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 12.1), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 12.8), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 13.5), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 13.9), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 15.2), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 15.3), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 15.5), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 15.5), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 15.4), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 15.2), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 15.2), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 14.6), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 14.2), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 13.8), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 13.4), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 12.8), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 12.3) })));
        });
        asset.getAttribute(GroundwaterSensorAsset.WATER_LEVEL).ifPresent(assetAttribute -> {
            assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), getRandomNumberInRange(100, 120)), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), getRandomNumberInRange(100, 120)), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), getRandomNumberInRange(90, 110)), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), getRandomNumberInRange(100, 110)), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), getRandomNumberInRange(100, 120)), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), getRandomNumberInRange(110, 120)) })));
        });
        asset.setId(UniqueIdentifierGenerator.generateId(asset.getName()));
        asset = assetStorageService.merge(asset);
    }
    // ################################ Realm smartcity - Mobility and Safety ###################################
    Asset<?> mobilityAndSafety = new ThingAsset("Mobility and safety");
    mobilityAndSafety.setRealm(this.realmCityTenant);
    mobilityAndSafety.setId(UniqueIdentifierGenerator.generateId(mobilityAndSafety.getName()));
    mobilityAndSafety = assetStorageService.merge(mobilityAndSafety);
    // ### Parking ###
    GroupAsset parkingGroupAsset = new GroupAsset("Parking group", ParkingAsset.class);
    parkingGroupAsset.setParent(mobilityAndSafety);
    parkingGroupAsset.getAttributes().addOrReplace(new Attribute<>("totalOccupancy", ValueType.POSITIVE_INTEGER).addMeta(new MetaItem<>(MetaItemType.UNITS, Constants.units(Constants.UNITS_PERCENTAGE)), new MetaItem<>(MetaItemType.CONSTRAINTS, ValueConstraint.constraints(new ValueConstraint.Min(0), new ValueConstraint.Max(100))), new MetaItem<>(MetaItemType.READ_ONLY), new MetaItem<>(MetaItemType.RULE_STATE), new MetaItem<>(MetaItemType.STORE_DATA_POINTS)));
    parkingGroupAsset.setId(UniqueIdentifierGenerator.generateId(parkingGroupAsset.getName()));
    parkingGroupAsset = assetStorageService.merge(parkingGroupAsset);
    ParkingAsset parking1Asset = createDemoParkingAsset("Markthal", parkingGroupAsset, new GeoJSONPoint(4.48527, 51.91984)).setManufacturer("SKIDATA").setModel("Barrier.Gate");
    parking1Asset.getAttribute(ParkingAsset.SPACES_OCCUPIED).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 34), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 37), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 31), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 36), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 32), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 39), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 47), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 53), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 165), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 301), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 417), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 442), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 489), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 467), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 490), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 438), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 457), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 402), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 379), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 336), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 257), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 204), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 112), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 75) })));
    });
    parking1Asset.setPriceHourly(3.75);
    parking1Asset.setPriceDaily(25.00);
    parking1Asset.setSpacesTotal(512);
    parking1Asset.getAttribute(ParkingAsset.SPACES_TOTAL).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.RULE_STATE));
    });
    parking1Asset.setId(UniqueIdentifierGenerator.generateId(parking1Asset.getName()));
    parking1Asset = assetStorageService.merge(parking1Asset);
    ParkingAsset parking2Asset = createDemoParkingAsset("Lijnbaan", parkingGroupAsset, new GeoJSONPoint(4.47681, 51.91849));
    parking2Asset.setManufacturer("SKIDATA");
    parking2Asset.setModel("Barrier.Gate");
    parking2Asset.getAttribute(ParkingAsset.SPACES_OCCUPIED).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 31), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 24), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 36), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 38), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 46), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 48), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 52), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 89), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 142), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 246), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 231), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 367), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 345), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 386), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 312), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 363), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 276), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 249), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 256), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 123), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 153), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 83), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 25) })));
    });
    parking2Asset.setPriceHourly(3.50);
    parking2Asset.setPriceDaily(23.00);
    parking2Asset.setSpacesTotal(390);
    parking2Asset.getAttribute(ParkingAsset.SPACES_TOTAL).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.RULE_STATE));
    });
    parking2Asset.setId(UniqueIdentifierGenerator.generateId(parking2Asset.getName()));
    parking2Asset = assetStorageService.merge(parking2Asset);
    ParkingAsset parking3Asset = createDemoParkingAsset("Erasmusbrug", parkingGroupAsset, new GeoJSONPoint(4.48207, 51.91127));
    parking3Asset.setManufacturer("Kiestra");
    parking3Asset.setModel("Genius Rainbow");
    parking3Asset.getAttribute(ParkingAsset.SPACES_OCCUPIED).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 25), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 23), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 23), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 21), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 18), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 13), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 29), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 36), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 119), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 257), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 357), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 368), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 362), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 349), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 370), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 367), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 355), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 314), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 254), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 215), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 165), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 149), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 108), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 47) })));
    });
    parking3Asset.setPriceHourly(3.40);
    parking3Asset.setPriceDaily(20.00);
    parking3Asset.setSpacesTotal(373);
    parking3Asset.getAttribute(ParkingAsset.SPACES_TOTAL).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.RULE_STATE));
    });
    parking3Asset.setId(UniqueIdentifierGenerator.generateId(parking3Asset.getName()));
    parking3Asset = assetStorageService.merge(parking3Asset);
    // ### Crowd control ###
    ThingAsset assetAreaStation = new ThingAsset("Stationsplein");
    assetAreaStation.setParent(mobilityAndSafety).getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, STATIONSPLEIN_LOCATION), new Attribute<>(BuildingAsset.POSTAL_CODE, "3013 AK"), new Attribute<>(BuildingAsset.CITY, "Rotterdam"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"));
    assetAreaStation.setId(UniqueIdentifierGenerator.generateId(assetAreaStation.getName()));
    assetAreaStation = assetStorageService.merge(assetAreaStation);
    area1Id = assetAreaStation.getId();
    PeopleCounterAsset peopleCounter1Asset = createDemoPeopleCounterAsset("People Counter South", assetAreaStation, new GeoJSONPoint(4.470147, 51.923171), () -> new SimulatorAgentLink(smartcitySimulatorAgentId));
    peopleCounter1Asset.setManufacturer("ViNotion");
    peopleCounter1Asset.setModel("ViSense");
    peopleCounter1Asset.getAttribute(PeopleCounterAsset.COUNT_GROWTH_PER_MINUTE).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0.2), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0.3), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0.1), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0.0), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0.2), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0.4), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0.5), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 0.7), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 1.8), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 2.1), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 2.4), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 1.9), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 1.8), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 2.1), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 1.8), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 1.7), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 2.3), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 3.1), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 2.8), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 2.2), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 1.6), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 1.7), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 1.1), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0.8) })));
    });
    peopleCounter1Asset.setId(UniqueIdentifierGenerator.generateId(peopleCounter1Asset.getName()));
    peopleCounter1Asset = assetStorageService.merge(peopleCounter1Asset);
    Asset<?> peopleCounter2Asset = createDemoPeopleCounterAsset("People Counter North", assetAreaStation, new GeoJSONPoint(4.469329, 51.923700), () -> new SimulatorAgentLink(smartcitySimulatorAgentId));
    peopleCounter2Asset.setManufacturer("Axis");
    peopleCounter2Asset.setModel("P1375-E");
    peopleCounter2Asset.getAttribute(PeopleCounterAsset.COUNT_GROWTH_PER_MINUTE).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), 0.3), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), 0.2), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), 0.3), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), 0.1), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), 0.0), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), 0.3), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 0.7), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 0.6), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 1.9), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 2.2), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 2.8), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 1.6), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 1.9), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 2.2), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 1.9), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 1.6), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 2.4), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 3.2), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 2.9), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 2.3), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 1.7), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 1.4), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 1.2), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 0.7) })));
    });
    peopleCounter2Asset.setId(UniqueIdentifierGenerator.generateId(peopleCounter2Asset.getName()));
    peopleCounter2Asset = assetStorageService.merge(peopleCounter2Asset);
    MicrophoneAsset microphone1Asset = createDemoMicrophoneAsset("Microphone South", assetAreaStation, new GeoJSONPoint(4.470362, 51.923201), () -> new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), getRandomNumberInRange(50, 60)), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), getRandomNumberInRange(50, 55)), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), getRandomNumberInRange(50, 55)), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), getRandomNumberInRange(50, 55)), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), getRandomNumberInRange(60, 70)), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), getRandomNumberInRange(60, 70)), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), getRandomNumberInRange(50, 60)) }));
    microphone1Asset.setManufacturer("Sorama");
    microphone1Asset.setModel("CAM1K");
    microphone1Asset.setId(UniqueIdentifierGenerator.generateId(microphone1Asset.getName()));
    microphone1Asset = assetStorageService.merge(microphone1Asset);
    MicrophoneAsset microphone2Asset = createDemoMicrophoneAsset("Microphone North", assetAreaStation, new GeoJSONPoint(4.469190, 51.923786), () -> new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.get(SECOND_OF_DAY), getRandomNumberInRange(50, 60)), new SimulatorReplayDatapoint(midnight.plusHours(1).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(2).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(3).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(4).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(5).get(SECOND_OF_DAY), getRandomNumberInRange(45, 50)), new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), getRandomNumberInRange(50, 55)), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), getRandomNumberInRange(50, 55)), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), getRandomNumberInRange(50, 55)), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), getRandomNumberInRange(60, 70)), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), getRandomNumberInRange(55, 60)), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), getRandomNumberInRange(60, 70)), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), getRandomNumberInRange(60, 65)), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), getRandomNumberInRange(50, 60)) }));
    microphone2Asset.setManufacturer("Sorama");
    microphone2Asset.setModel("CAM1K");
    microphone2Asset.setId(UniqueIdentifierGenerator.generateId(microphone2Asset.getName()));
    microphone2Asset = assetStorageService.merge(microphone2Asset);
    LightAsset lightStation1Asset = createDemoLightAsset("Station Light NW", assetAreaStation, new GeoJSONPoint(4.468874, 51.923881));
    lightStation1Asset.setManufacturer("Philips");
    lightStation1Asset.setModel("CityTouch");
    lightStation1Asset.setId(UniqueIdentifierGenerator.generateId(lightStation1Asset.getName()));
    lightStation1Asset = assetStorageService.merge(lightStation1Asset);
    LightAsset lightStation2Asset = createDemoLightAsset("Station Light NE", assetAreaStation, new GeoJSONPoint(4.470539, 51.923991));
    lightStation2Asset.setManufacturer("Philips");
    lightStation2Asset.setModel("CityTouch");
    lightStation2Asset.setId(UniqueIdentifierGenerator.generateId(lightStation2Asset.getName()));
    lightStation2Asset = assetStorageService.merge(lightStation2Asset);
    LightAsset lightStation3Asset = createDemoLightAsset("Station Light S", assetAreaStation, new GeoJSONPoint(4.470558, 51.923186));
    lightStation3Asset.setManufacturer("Philips");
    lightStation3Asset.setModel("CityTouch");
    lightStation3Asset.setId(UniqueIdentifierGenerator.generateId(lightStation3Asset.getName()));
    lightStation3Asset = assetStorageService.merge(lightStation3Asset);
    // ### Lighting controller ###
    LightAsset lightingControllerOPAsset = createDemoLightControllerAsset("Lighting Noordereiland", mobilityAndSafety, new GeoJSONPoint(4.496177, 51.915060));
    lightingControllerOPAsset.setManufacturer("Pharos");
    lightingControllerOPAsset.setModel("LPC X");
    lightingControllerOPAsset.setId(UniqueIdentifierGenerator.generateId(lightingControllerOPAsset.getName()));
    lightingControllerOPAsset = assetStorageService.merge(lightingControllerOPAsset);
    LightAsset lightOP1Asset = createDemoLightAsset("Ons Park 1", lightingControllerOPAsset, new GeoJSONPoint(4.49626, 51.91516));
    lightOP1Asset.setManufacturer("Schréder");
    lightOP1Asset.setModel("Axia 2");
    lightOP1Asset.setId(UniqueIdentifierGenerator.generateId(lightOP1Asset.getName()));
    lightOP1Asset = assetStorageService.merge(lightOP1Asset);
    LightAsset lightOP2Asset = createDemoLightAsset("Ons Park 2", lightingControllerOPAsset, new GeoJSONPoint(4.49705, 51.91549));
    lightOP2Asset.setManufacturer("Schréder");
    lightOP2Asset.setModel("Axia 2");
    lightOP2Asset.setId(UniqueIdentifierGenerator.generateId(lightOP2Asset.getName()));
    lightOP2Asset = assetStorageService.merge(lightOP2Asset);
    LightAsset lightOP3Asset = createDemoLightAsset("Ons Park 3", lightingControllerOPAsset, new GeoJSONPoint(4.49661, 51.91495));
    lightOP3Asset.setManufacturer("Schréder");
    lightOP3Asset.setModel("Axia 2");
    lightOP3Asset.setId(UniqueIdentifierGenerator.generateId(lightOP3Asset.getName()));
    lightOP3Asset = assetStorageService.merge(lightOP3Asset);
    LightAsset lightOP4Asset = createDemoLightAsset("Ons Park 4", lightingControllerOPAsset, new GeoJSONPoint(4.49704, 51.91520));
    lightOP4Asset.setManufacturer("Schréder");
    lightOP4Asset.setModel("Axia 2");
    lightOP4Asset.setId(UniqueIdentifierGenerator.generateId(lightOP4Asset.getName()));
    lightOP4Asset = assetStorageService.merge(lightOP4Asset);
    LightAsset lightOP5Asset = createDemoLightAsset("Ons Park 5", lightingControllerOPAsset, new GeoJSONPoint(4.49758, 51.91440));
    lightOP5Asset.setManufacturer("Schréder");
    lightOP5Asset.setModel("Axia 2");
    lightOP5Asset.setId(UniqueIdentifierGenerator.generateId(lightOP5Asset.getName()));
    lightOP5Asset = assetStorageService.merge(lightOP5Asset);
    LightAsset lightOP6Asset = createDemoLightAsset("Ons Park 6", lightingControllerOPAsset, new GeoJSONPoint(4.49786, 51.91452));
    lightOP6Asset.setManufacturer("Schréder");
    lightOP6Asset.setModel("Axia 2");
    lightOP6Asset.setId(UniqueIdentifierGenerator.generateId(lightOP6Asset.getName()));
    lightOP6Asset = assetStorageService.merge(lightOP6Asset);
    // ### Ships ###
    GroupAsset shipGroupAsset = new GroupAsset("Ship group", ShipAsset.class);
    shipGroupAsset.setParent(mobilityAndSafety);
    shipGroupAsset.setId(UniqueIdentifierGenerator.generateId(shipGroupAsset.getName()));
    shipGroupAsset = assetStorageService.merge(shipGroupAsset);
    ShipAsset ship1Asset = createDemoShipAsset("Hotel New York", shipGroupAsset, new GeoJSONPoint(4.482669, 51.916436));
    ship1Asset.setLength(12);
    ship1Asset.setShipType("Passenger");
    ship1Asset.setIMONumber(9183527);
    ship1Asset.setMSSINumber(244650537);
    ship1Asset.getAttribute(ShipAsset.DIRECTION).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(30).get(SECOND_OF_DAY), 7), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), 187), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(30).get(SECOND_OF_DAY), 7) })));
    });
    ship1Asset.getAttribute(Asset.LOCATION).ifPresent(assetAttribute -> {
        assetAttribute.addMeta(new MetaItem<>(MetaItemType.AGENT_LINK, new SimulatorAgentLink(smartcitySimulatorAgentId).setReplayData(new SimulatorReplayDatapoint[] { new SimulatorReplayDatapoint(midnight.plusHours(6).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(6).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(7).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(7).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(8).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(8).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(9).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(9).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(10).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(11).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(11).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(12).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(12).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(13).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(13).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(14).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(14).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(15).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(16).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(16).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(17).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(17).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(18).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(18).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(19).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(19).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(20).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(21).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(21).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(22).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(22).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(23).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(5).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(10).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(15).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(20).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(25).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(30).get(SECOND_OF_DAY), new GeoJSONPoint(4.484374, 51.903518)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(35).get(SECOND_OF_DAY), new GeoJSONPoint(4.479779, 51.904404)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(40).get(SECOND_OF_DAY), new GeoJSONPoint(4.482914, 51.906769)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(45).get(SECOND_OF_DAY), new GeoJSONPoint(4.486156, 51.908570)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(50).get(SECOND_OF_DAY), new GeoJSONPoint(4.483362, 51.911897)), new SimulatorReplayDatapoint(midnight.plusHours(23).plusMinutes(55).get(SECOND_OF_DAY), new GeoJSONPoint(4.482669, 51.916436)) })));
    });
    ship1Asset.setId(UniqueIdentifierGenerator.generateId(ship1Asset.getName()));
    ship1Asset = assetStorageService.merge(ship1Asset);
}
Also used : Attribute(org.openremote.model.attribute.Attribute) Tenant(org.openremote.model.security.Tenant) GeoJSONPoint(org.openremote.model.geo.GeoJSONPoint) HTTPAgentLink(org.openremote.agent.protocol.http.HTTPAgentLink) SimulatorAgent(org.openremote.agent.protocol.simulator.SimulatorAgent) SimulatorAgentLink(org.openremote.agent.protocol.simulator.SimulatorAgentLink) MetaItem(org.openremote.model.attribute.MetaItem) MultivaluedStringMap(org.openremote.model.value.ValueType.MultivaluedStringMap) LocalTime(java.time.LocalTime) SimulatorReplayDatapoint(org.openremote.model.simulator.SimulatorReplayDatapoint) HTTPAgent(org.openremote.agent.protocol.http.HTTPAgent)

Example 24 with Tenant

use of org.openremote.model.security.Tenant in project openremote by openremote.

the class ManagerTestSetup method onStart.

@Override
public void onStart() throws Exception {
    super.onStart();
    KeycloakTestSetup keycloakTestSetup = setupService.getTaskOfType(KeycloakTestSetup.class);
    Tenant masterTenant = keycloakTestSetup.masterTenant;
    Tenant tenantBuilding = keycloakTestSetup.tenantBuilding;
    Tenant tenantCity = keycloakTestSetup.tenantCity;
    masterRealm = masterTenant.getRealm();
    this.realmBuildingTenant = tenantBuilding.getRealm();
    this.realmCityTenant = tenantCity.getRealm();
    this.realmEnergyTenant = keycloakTestSetup.energyTenant.getRealm();
    // ################################ Assets for 'master' realm ###################################
    BuildingAsset smartOffice = new BuildingAsset("Smart office");
    smartOffice.setRealm(masterRealm);
    smartOffice.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, SMART_OFFICE_LOCATION), new Attribute<>(BuildingAsset.STREET, "Torenallee 20"), new Attribute<>(BuildingAsset.POSTAL_CODE, "5617"), new Attribute<>(BuildingAsset.CITY, "Eindhoven"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"));
    smartOffice = assetStorageService.merge(smartOffice);
    smartOfficeId = smartOffice.getId();
    Asset<?> groundFloor = new ThingAsset("Ground floor");
    groundFloor.setParent(smartOffice);
    groundFloor.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, SMART_OFFICE_LOCATION));
    groundFloor = assetStorageService.merge(groundFloor);
    groundFloorId = groundFloor.getId();
    RoomAsset lobby = new RoomAsset("Lobby");
    lobby.setParent(groundFloor);
    lobby.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, SMART_OFFICE_LOCATION), new Attribute<>("lobbyLocations", JSON_OBJECT.asArray()));
    lobby = assetStorageService.merge(lobby);
    lobbyId = lobby.getId();
    SimulatorAgent agent = new SimulatorAgent("Demo Agent");
    agent.setParent(lobby);
    agent.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, SMART_OFFICE_LOCATION));
    agent = assetStorageService.merge(agent);
    agentId = agent.getId();
    Asset<?> thing = new ThingAsset("Demo Thing");
    thing.setParent(agent);
    thing.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, SMART_OFFICE_LOCATION).addMeta(new MetaItem<>(RULE_STATE, true)), new Attribute<>(thingLightToggleAttributeName, BOOLEAN, true).addOrReplaceMeta(new MetaItem<>(LABEL, "Light 1 Toggle"), new MetaItem<>(STORE_DATA_POINTS, true), new MetaItem<>(DATA_POINTS_MAX_AGE_DAYS, DATA_POINTS_MAX_AGE_DAYS_DEFAULT * 7), new MetaItem<>(AGENT_LINK, new SimulatorAgentLink(agent.getId()))), new Attribute<>("light1Dimmer", POSITIVE_INTEGER).addOrReplaceMeta(new MetaItem<>(LABEL, "Light 1 Dimmer"), new MetaItem<>(AGENT_LINK, new SimulatorAgentLink(agent.getId())), new MetaItem<>(UNITS, Constants.units(UNITS_PERCENTAGE)), new MetaItem<>(CONSTRAINTS, ValueConstraint.constraints(new ValueConstraint.Min(0), new ValueConstraint.Max(100)))), new Attribute<>("light1Color", COLOUR_RGB, new ColourRGB(88, 123, 88)).addOrReplaceMeta(new MetaItem<>(LABEL, "Light 1 Color"), new MetaItem<>(AGENT_LINK, new SimulatorAgentLink(agent.getId()))), new Attribute<>("light1PowerConsumption", POSITIVE_NUMBER, 12.345).addOrReplaceMeta(new MetaItem<>(LABEL, "Light 1 Usage"), new MetaItem<>(READ_ONLY, true), new MetaItem<>(UNITS, Constants.units(UNITS_KILO, UNITS_WATT, UNITS_HOUR)), new MetaItem<>(AGENT_LINK, new SimulatorAgentLink(agent.getId()))));
    thing = assetStorageService.merge(thing);
    thingId = thing.getId();
    // ################################ Assets for 'energy' realm ###################################
    EnergyOptimisationAsset electricityOptimisationAsset = new EnergyOptimisationAsset("Optimisation");
    electricityOptimisationAsset.setIntervalSize(3d);
    electricityOptimisationAsset.setRealm(keycloakTestSetup.energyTenant.getRealm());
    electricityOptimisationAsset.setFinancialWeighting(100);
    electricityOptimisationAsset = assetStorageService.merge(electricityOptimisationAsset);
    electricityOptimisationAssetId = electricityOptimisationAsset.getId();
    ElectricityConsumerAsset electricityConsumerAsset = new ElectricityConsumerAsset("Consumer");
    electricityConsumerAsset.setParent(electricityOptimisationAsset);
    electricityConsumerAsset.getAttribute(ElectricityAsset.POWER).ifPresent(attr -> attr.addMeta(new MetaItem<>(HAS_PREDICTED_DATA_POINTS)));
    electricityConsumerAsset = assetStorageService.merge(electricityConsumerAsset);
    electricityConsumerAssetId = electricityConsumerAsset.getId();
    ElectricityProducerSolarAsset electricitySolarAsset = new ElectricityProducerSolarAsset("Producer");
    electricitySolarAsset.setParent(electricityOptimisationAsset);
    electricitySolarAsset.getAttribute(ElectricityAsset.POWER).ifPresent(attr -> attr.addMeta(new MetaItem<>(HAS_PREDICTED_DATA_POINTS)));
    electricitySolarAsset.setPanelOrientation(ElectricityProducerSolarAsset.PanelOrientation.SOUTH);
    electricitySolarAsset.setPanelAzimuth(0);
    electricitySolarAsset.setPanelPitch(30);
    electricitySolarAsset.setEfficiencyExport(100);
    electricitySolarAsset.setPowerExportMax(2.5);
    electricitySolarAsset.setLocation(new GeoJSONPoint(9.195285, 48.787418));
    electricitySolarAsset.setSetActualSolarValueWithForecast(true);
    electricitySolarAsset.setIncludeForecastSolarService(true);
    electricitySolarAsset = assetStorageService.merge(electricitySolarAsset);
    electricitySolarAssetId = electricitySolarAsset.getId();
    ElectricityProducerWindAsset electricityWindAsset = new ElectricityProducerWindAsset("Wind Turbine");
    electricityWindAsset.setParent(electricityOptimisationAsset);
    electricityWindAsset.getAttribute(ElectricityAsset.POWER).ifPresent(attr -> attr.addMeta(new MetaItem<>(HAS_PREDICTED_DATA_POINTS)));
    electricityWindAsset.setWindSpeedMax(18d);
    electricityWindAsset.setWindSpeedMin(2d);
    electricityWindAsset.setWindSpeedReference(12d);
    electricityWindAsset.setPowerExportMax(9000d);
    electricityWindAsset.setEfficiencyExport(100);
    electricityWindAsset.setPowerExportMax(2.5);
    electricityWindAsset.setLocation(new GeoJSONPoint(9.195285, 48.787418));
    electricityWindAsset.setSetActualWindValueWithForecast(true);
    electricityWindAsset.setIncludeForecastWindService(true);
    electricityWindAsset = assetStorageService.merge(electricityWindAsset);
    electricityWindAssetId = electricityWindAsset.getId();
    ElectricityBatteryAsset electricityBatteryAsset = new ElectricityBatteryAsset("Battery");
    electricityBatteryAsset.setParent(electricityOptimisationAsset);
    electricityBatteryAsset.setEnergyCapacity(200d);
    electricityBatteryAsset.setEnergyLevelPercentageMin(20);
    electricityBatteryAsset.setEnergyLevelPercentageMax(80);
    electricityBatteryAsset.setEnergyLevel(100d);
    electricityBatteryAsset.setPowerImportMax(7d);
    electricityBatteryAsset.setPowerExportMax(20d);
    electricityBatteryAsset.setPowerSetpoint(0d);
    electricityBatteryAsset.setEfficiencyImport(95);
    electricityBatteryAsset.setEfficiencyExport(98);
    electricityBatteryAsset.setSupportsExport(true);
    electricityBatteryAsset.setSupportsImport(true);
    electricityBatteryAsset.getAttribute(ElectricityAsset.POWER_SETPOINT).ifPresent(attr -> attr.addMeta(new MetaItem<>(HAS_PREDICTED_DATA_POINTS)));
    electricityBatteryAsset = assetStorageService.merge(electricityBatteryAsset);
    electricityBatteryAssetId = electricityBatteryAsset.getId();
    ElectricitySupplierAsset electricitySupplierAsset = new ElectricitySupplierAsset("Supplier");
    electricitySupplierAsset.setParent(electricityOptimisationAsset);
    electricitySupplierAsset.setTariffExport(-0.05);
    electricitySupplierAsset.setTariffImport(0.08);
    electricitySupplierAsset.getAttribute(ElectricityAsset.TARIFF_IMPORT).ifPresent(attr -> attr.addMeta(new MetaItem<>(HAS_PREDICTED_DATA_POINTS)));
    electricitySupplierAsset.getAttribute(ElectricityAsset.TARIFF_EXPORT).ifPresent(attr -> attr.addMeta(new MetaItem<>(HAS_PREDICTED_DATA_POINTS)));
    electricitySupplierAsset = assetStorageService.merge(electricitySupplierAsset);
    electricitySupplierAssetId = electricitySupplierAsset.getId();
    // ################################ Assets for 'building' realm ###################################
    BuildingAsset smartBuilding = new BuildingAsset("Smart building");
    smartBuilding.setRealm(this.realmBuildingTenant);
    smartBuilding.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, SMART_BUILDING_LOCATION), new Attribute<>(BuildingAsset.STREET, "Kastanjelaan 500"), new Attribute<>(BuildingAsset.POSTAL_CODE, "5616"), new Attribute<>(BuildingAsset.CITY, "Eindhoven"), new Attribute<>(BuildingAsset.COUNTRY, "Netherlands"));
    smartBuilding = assetStorageService.merge(smartBuilding);
    smartBuildingId = smartBuilding.getId();
    // The "Apartment 1" is the demo apartment with complex scenes
    BuildingAsset apartment1 = createDemoApartment(smartBuilding, "Apartment 1", new GeoJSONPoint(5.454233, 51.446800));
    apartment1.setParent(smartBuilding);
    apartment1.setAccessPublicRead(true);
    apartment1.getAttribute(Asset.LOCATION).ifPresent(locationAttr -> locationAttr.getMeta().addOrReplace(new MetaItem<>(ACCESS_PUBLIC_READ), new MetaItem<>(ACCESS_PUBLIC_WRITE)));
    apartment1 = assetStorageService.merge(apartment1);
    apartment1Id = apartment1.getId();
    SimulatorAgent apartment1ServiceAgent = new SimulatorAgent("Service Agent (Simulator)");
    apartment1ServiceAgent.setParent(apartment1);
    apartment1ServiceAgent = assetStorageService.merge(apartment1ServiceAgent);
    apartment1ServiceAgentId = apartment1ServiceAgent.getId();
    /* ############################ ROOMS ############################## */
    RoomAsset apartment1Livingroom = createDemoApartmentRoom(apartment1, "Living Room 1");
    apartment1Livingroom.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454213, 51.446884)), new Attribute<>("lightsCeiling", NUMBER, 0d).addMeta(new MetaItem<>(ACCESS_RESTRICTED_READ, true), new MetaItem<>(ACCESS_RESTRICTED_WRITE, true)), new Attribute<>("lightsStand", BOOLEAN, true).addMeta(new MetaItem<>(ACCESS_RESTRICTED_READ, true), new MetaItem<>(ACCESS_RESTRICTED_WRITE, true)));
    addDemoApartmentRoomMotionSensor(apartment1Livingroom, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentRoomCO2Sensor(apartment1Livingroom, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentRoomHumiditySensor(apartment1Livingroom, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentRoomThermometer(apartment1Livingroom, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentTemperatureControl(apartment1Livingroom, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    apartment1Livingroom.setId(apartment1LivingroomId);
    apartment1Livingroom = assetStorageService.merge(apartment1Livingroom);
    apartment1LivingroomId = apartment1Livingroom.getId();
    RoomAsset apartment1Kitchen = createDemoApartmentRoom(apartment1, "Kitchen 1");
    apartment1Kitchen.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454122, 51.446800)), new Attribute<>("lights", BOOLEAN, true).addMeta(new MetaItem<>(ACCESS_RESTRICTED_READ, true)).addMeta(new MetaItem<>(ACCESS_RESTRICTED_WRITE, true)));
    addDemoApartmentRoomMotionSensor(apartment1Kitchen, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    for (String switchName : new String[] { "A", "B", "C" }) {
        addDemoApartmentSmartSwitch(apartment1Kitchen, switchName, true, attributeIndex -> {
            switch(attributeIndex) {
                case 2:
                case 3:
                case 4:
                    return new MetaItem[] { new MetaItem<>(AGENT_LINK, new SimulatorAgentLink(apartment1ServiceAgentId)) };
            }
            return null;
        });
    }
    apartment1Kitchen = assetStorageService.merge(apartment1Kitchen);
    apartment1KitchenId = apartment1Kitchen.getId();
    RoomAsset apartment1Hallway = createDemoApartmentRoom(apartment1, "Hallway 1");
    apartment1Hallway.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454342, 51.446762)), new Attribute<>("lights", BOOLEAN, true).addMeta(new MetaItem<>(ACCESS_RESTRICTED_READ, true)).addMeta(new MetaItem<>(ACCESS_RESTRICTED_WRITE, true)));
    addDemoApartmentRoomMotionSensor(apartment1Hallway, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    apartment1Hallway = assetStorageService.merge(apartment1Hallway);
    apartment1HallwayId = apartment1Hallway.getId();
    RoomAsset apartment1Bedroom1 = createDemoApartmentRoom(apartment1, "Bedroom 1");
    apartment1Bedroom1.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454332, 51.446830)), new Attribute<>("lights", BOOLEAN, true).addMeta(new MetaItem<>(ACCESS_RESTRICTED_READ, true)).addMeta(new MetaItem<>(ACCESS_RESTRICTED_WRITE, true)));
    addDemoApartmentRoomCO2Sensor(apartment1Bedroom1, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentRoomHumiditySensor(apartment1Bedroom1, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentRoomThermometer(apartment1Bedroom1, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentTemperatureControl(apartment1Bedroom1, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    apartment1Bedroom1 = assetStorageService.merge(apartment1Bedroom1);
    apartment1Bedroom1Id = apartment1Bedroom1.getId();
    RoomAsset apartment1Bathroom = new RoomAsset("Bathroom 1");
    apartment1Bathroom.setParent(apartment1);
    apartment1Bathroom.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454227, 51.446753)), new Attribute<>("lights", BOOLEAN, true).addMeta(new MetaItem<>(RULE_STATE, true), new MetaItem<>(ACCESS_RESTRICTED_READ, true), new MetaItem<>(ACCESS_RESTRICTED_WRITE, true)));
    addDemoApartmentRoomThermometer(apartment1Bathroom, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    addDemoApartmentTemperatureControl(apartment1Bathroom, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    apartment1Bathroom = assetStorageService.merge(apartment1Bathroom);
    apartment1BathroomId = apartment1Bathroom.getId();
    addDemoApartmentVentilation(apartment1, true, () -> new SimulatorAgentLink(apartment1ServiceAgentId));
    apartment1 = assetStorageService.merge(apartment1);
    apartment1Id = apartment1.getId();
    apartment2Id = UniqueIdentifierGenerator.generateId(tenantBuilding.getRealm() + "Apartment 2");
    BuildingAsset apartment2 = new BuildingAsset("Apartment 2");
    apartment2.setId(apartment2Id);
    apartment2.setParent(smartBuilding);
    apartment2.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454053, 51.446603)), new Attribute<>("allLightsOffSwitch", BOOLEAN, true).addMeta(new MetaItem<>(LABEL, "All Lights Off Switch"), new MetaItem<>(RULE_EVENT, true), new MetaItem<>(RULE_EVENT_EXPIRES, "PT3S")));
    apartment2 = assetStorageService.merge(apartment2);
    RoomAsset apartment2Livingroom = new RoomAsset("Living Room 2");
    apartment2Livingroom.setAccessPublicRead(true);
    apartment2Livingroom.setParent(apartment2);
    ObjectNode objectMap = ValueUtil.createJsonObject();
    objectMap.put("cactus", 0.8);
    apartment2Livingroom.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454109, 51.446631)).addMeta(new MetaItem<>(ACCESS_PUBLIC_READ)), new Attribute<>("motionSensor", BOOLEAN, false).addMeta(new MetaItem<>(LABEL, "Motion Sensor"), new MetaItem<>(RULE_STATE, true), new MetaItem<>(RULE_EVENT, true)), new Attribute<>("presenceDetected", BOOLEAN, false).addMeta(new MetaItem<>(LABEL, "Presence Detected"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("firstPresenceDetected", ValueType.TIMESTAMP).addMeta(new MetaItem<>(LABEL, "First Presence Timestamp"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("lastPresenceDetected", ValueType.TIMESTAMP).addMeta(new MetaItem<>(LABEL, "Last Presence Timestamp"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("co2Level", POSITIVE_INTEGER, 350).addMeta(new MetaItem<>(LABEL, "CO2 Level"), new MetaItem<>(UNITS, Constants.units(UNITS_PART_PER_MILLION)), new MetaItem<>(RULE_STATE, true)), new Attribute<>("lightSwitch", BOOLEAN, true).addMeta(new MetaItem<>(LABEL, "Light Switch"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("windowOpen", BOOLEAN, false).addMeta(new MetaItem<>(ACCESS_RESTRICTED_READ, true)), new Attribute<>("lightSwitchTriggerTimes", TEXT.asArray(), new String[] { "1800", "0830" }).addMeta(new MetaItem<>(LABEL, "Lightswitch Trigger Times"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("plantsWaterLevels", JSON_OBJECT, objectMap).addMeta(new MetaItem<>(LABEL, "Water levels of the plants"), new MetaItem<>(RULE_STATE, true)));
    apartment2Livingroom = assetStorageService.merge(apartment2Livingroom);
    apartment2LivingroomId = apartment2Livingroom.getId();
    RoomAsset apartment2Bathroom = new RoomAsset("Bathroom 2");
    apartment2Bathroom.setParent(apartment2);
    apartment2Bathroom.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.454015, 51.446665)), new Attribute<>("motionSensor", BOOLEAN, false).addMeta(new MetaItem<>(LABEL, "Motion Sensor"), new MetaItem<>(RULE_STATE, true), new MetaItem<>(RULE_EVENT, true)), new Attribute<>("presenceDetected", BOOLEAN, false).addMeta(new MetaItem<>(LABEL, "Presence Detected"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("firstPresenceDetected", ValueType.TIMESTAMP).addMeta(new MetaItem<>(LABEL, "First Presence Timestamp"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("lastPresenceDetected", ValueType.TIMESTAMP).addMeta(new MetaItem<>(LABEL, "Last Presence Timestamp"), new MetaItem<>(RULE_STATE, true)), new Attribute<>("lightSwitch", BOOLEAN, true).addMeta(new MetaItem<>(LABEL, "Light Switch"), new MetaItem<>(RULE_STATE, true)));
    apartment2Bathroom = assetStorageService.merge(apartment2Bathroom);
    apartment2BathroomId = apartment2Bathroom.getId();
    BuildingAsset apartment3 = new BuildingAsset("Apartment 3");
    apartment3.setParent(smartBuilding);
    apartment3.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.453859, 51.446379)));
    apartment3 = assetStorageService.merge(apartment3);
    apartment3Id = apartment3.getId();
    RoomAsset apartment3Livingroom = new RoomAsset("Living Room 3");
    apartment3Livingroom.setParent(apartment3);
    apartment3Livingroom.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, new GeoJSONPoint(5.453932, 51.446422)), new Attribute<>("lightSwitch", BOOLEAN));
    apartment3Livingroom = assetStorageService.merge(apartment3Livingroom);
    apartment3LivingroomId = apartment3Livingroom.getId();
    // ################################ Link users and assets ###################################
    assetStorageService.storeUserAssetLinks(Arrays.asList(new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, apartment1Id), new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, apartment1LivingroomId), new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, apartment1KitchenId), new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, apartment1Bedroom1Id), new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, apartment1BathroomId), new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, apartment1HallwayId)));
    assetStorageService.storeUserAssetLinks(Arrays.asList(new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.buildingUserId, apartment2Id), new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.buildingUserId, apartment2LivingroomId), new UserAssetLink(keycloakTestSetup.tenantBuilding.getRealm(), keycloakTestSetup.buildingUserId, apartment2BathroomId)));
    // ################################ Make users restricted ###################################
    ManagerIdentityProvider identityProvider = identityService.getIdentityProvider();
    identityProvider.updateUserRealmRoles(tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, identityProvider.addRealmRoles(tenantBuilding.getRealm(), keycloakTestSetup.testuser3Id, RESTRICTED_USER_REALM_ROLE));
    identityProvider.updateUserRealmRoles(tenantBuilding.getRealm(), keycloakTestSetup.buildingUserId, identityProvider.addRealmRoles(tenantBuilding.getRealm(), keycloakTestSetup.buildingUserId, RESTRICTED_USER_REALM_ROLE));
    // ################################ Realm smartcity ###################################
    CityAsset smartCity = new CityAsset("Smart city");
    smartCity.setRealm(this.realmCityTenant);
    smartCity.addOrReplaceAttributes(new Attribute<>(Asset.LOCATION, SMART_CITY_LOCATION), new Attribute<>(CityAsset.CITY, "Eindhoven"), new Attribute<>(CityAsset.COUNTRY, "Netherlands"));
    smartCity = assetStorageService.merge(smartCity);
    SimulatorAgent smartCityServiceAgent = new SimulatorAgent("Service Agent (Simulator)");
    smartCityServiceAgent.setParent(smartCity);
    smartCityServiceAgent = assetStorageService.merge(smartCityServiceAgent);
    smartCityServiceAgentId = smartCityServiceAgent.getId();
    // ################################ Realm B Area 1 ###################################
    Asset<?> assetArea1 = new ThingAsset("Area 1");
    assetArea1.setParent(smartCity);
    assetArea1.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, AREA_1_LOCATION));
    assetArea1 = assetStorageService.merge(assetArea1);
    area1Id = assetArea1.getId();
    PeopleCounterAsset peopleCounter1Asset = createDemoPeopleCounterAsset("PeopleCounter 1", assetArea1, new GeoJSONPoint(5.477126, 51.439137), () -> new SimulatorAgentLink(smartCityServiceAgentId));
    peopleCounter1Asset = assetStorageService.merge(peopleCounter1Asset);
    Asset<?> microphone1Asset = createDemoMicrophoneAsset("Microphone 1", assetArea1, new GeoJSONPoint(5.478092, 51.438655), () -> new SimulatorAgentLink(smartCityServiceAgentId));
    microphone1Asset = assetStorageService.merge(microphone1Asset);
    microphone1Id = microphone1Asset.getId();
    Asset<?> enviroment1Asset = createDemoEnvironmentAsset("Environment 1", assetArea1, new GeoJSONPoint(5.478907, 51.438943), () -> new SimulatorAgentLink(smartCityServiceAgentId));
    enviroment1Asset = assetStorageService.merge(enviroment1Asset);
    Asset<?> light1Asset = createDemoLightAsset("Light 1", assetArea1, new GeoJSONPoint(5.476111, 51.438492));
    light1Asset = assetStorageService.merge(light1Asset);
    Asset<?> light2Asset = createDemoLightAsset("Light 2", assetArea1, new GeoJSONPoint(5.477272, 51.439214));
    light2Asset = assetStorageService.merge(light2Asset);
    // ################################ Realm B Area 2 ###################################
    Asset<?> assetArea2 = new ThingAsset("Area 2");
    assetArea2.setParent(smartCity);
    assetArea2.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, AREA_2_LOCATION));
    assetArea2 = assetStorageService.merge(assetArea2);
    Asset<?> peopleCounter2Asset = createDemoPeopleCounterAsset("PeopleCounter 2", assetArea2, new GeoJSONPoint(5.473686, 51.438603), () -> new SimulatorAgentLink(smartCityServiceAgentId));
    peopleCounter2Asset = assetStorageService.merge(peopleCounter2Asset);
    Asset<?> environment2Asset = createDemoEnvironmentAsset("Environment 2", assetArea2, new GeoJSONPoint(5.473552, 51.438412), () -> new SimulatorAgentLink(smartCityServiceAgentId));
    environment2Asset = assetStorageService.merge(environment2Asset);
    // ################################ Realm B Area 3 ###################################
    Asset<?> assetArea3 = new ThingAsset("Area 3");
    assetArea3.setParent(smartCity);
    assetArea3.getAttributes().addOrReplace(new Attribute<>(Asset.LOCATION, AREA_3_LOCATION));
    assetArea3 = assetStorageService.merge(assetArea3);
    Asset<?> peopleCounter3Asset = createDemoPeopleCounterAsset("PeopleCounter 3", assetArea3, new GeoJSONPoint(5.487234, 51.447065), () -> new SimulatorAgentLink(smartCityServiceAgentId));
    peopleCounter3Asset = assetStorageService.merge(peopleCounter3Asset);
    peopleCounter3AssetId = peopleCounter3Asset.getId();
    LightAsset lightController_3Asset = createDemoLightControllerAsset("LightController 3", assetArea3, new GeoJSONPoint(5.487478, 51.446979));
    lightController_3Asset = assetStorageService.merge(lightController_3Asset);
}
Also used : Attribute(org.openremote.model.attribute.Attribute) UserAssetLink(org.openremote.model.asset.UserAssetLink) Tenant(org.openremote.model.security.Tenant) ManagerIdentityProvider(org.openremote.manager.security.ManagerIdentityProvider) GeoJSONPoint(org.openremote.model.geo.GeoJSONPoint) SimulatorAgent(org.openremote.agent.protocol.simulator.SimulatorAgent) SimulatorAgentLink(org.openremote.agent.protocol.simulator.SimulatorAgentLink) MetaItem(org.openremote.model.attribute.MetaItem) ObjectNode(com.fasterxml.jackson.databind.node.ObjectNode) ColourRGB(org.openremote.model.value.impl.ColourRGB)

Example 25 with Tenant

use of org.openremote.model.security.Tenant in project openremote by openremote.

the class ManagerDemoAgentSetup method onStart.

@Override
public void onStart() throws Exception {
    super.onStart();
    KeycloakDemoSetup keycloakDemoSetup = setupService.getTaskOfType(KeycloakDemoSetup.class);
    Tenant masterTenant = keycloakDemoSetup.masterTenant;
    masterRealm = masterTenant.getRealm();
    if (knx) {
        LOG.info("Enable KNX demo agent, gateway/local IP: " + knxGatewayIp + "/" + knxLocalIp);
        KNXAgent agent = new KNXAgent("Demo KNX agent").setRealm(masterRealm).setHost(knxGatewayIp).setBindHost(knxLocalIp);
        agent = assetStorageService.merge(agent);
    }
    if (velbus) {
        LOG.info("Enable Velbus demo agent, host/port: " + velbusHost + "/" + velbusPort);
        VelbusTCPAgent agent = new VelbusTCPAgent("Demo VELBUS agent").setRealm(masterRealm).setHost(velbusHost).setPort(velbusPort);
        agent = assetStorageService.merge(agent);
    }
}
Also used : Tenant(org.openremote.model.security.Tenant) VelbusTCPAgent(org.openremote.agent.protocol.velbus.VelbusTCPAgent) KNXAgent(org.openremote.agent.protocol.knx.KNXAgent)

Aggregations

Tenant (org.openremote.model.security.Tenant)25 WebApplicationException (javax.ws.rs.WebApplicationException)8 ServerAsset (org.openremote.manager.asset.ServerAsset)3 Asset (org.openremote.model.asset.Asset)3 KNXAgent (org.openremote.agent.protocol.knx.KNXAgent)2 SimulatorAgent (org.openremote.agent.protocol.simulator.SimulatorAgent)2 SimulatorAgentLink (org.openremote.agent.protocol.simulator.SimulatorAgentLink)2 VelbusTCPAgent (org.openremote.agent.protocol.velbus.VelbusTCPAgent)2 MapAccess.getString (org.openremote.container.util.MapAccess.getString)2 PersistenceEvent (org.openremote.model.PersistenceEvent)2 AssetAttribute (org.openremote.model.asset.AssetAttribute)2 Attribute (org.openremote.model.attribute.Attribute)2 MetaItem (org.openremote.model.attribute.MetaItem)2 GeoJSONPoint (org.openremote.model.geo.GeoJSONPoint)2 TenantRuleset (org.openremote.model.rules.TenantRuleset)2 User (org.openremote.model.security.User)2 ObjectNode (com.fasterxml.jackson.databind.node.ObjectNode)1 Coordinate (com.vividsolutions.jts.geom.Coordinate)1 LocalTime (java.time.LocalTime)1 ZonedDateTime (java.time.ZonedDateTime)1