[TASK] Enable the timestamp-function to work. WTF.

This commit is contained in:
Jan Philipp Timme 2016-06-07 11:45:55 +02:00
parent 0182492089
commit 8e31770533
1 changed files with 2 additions and 2 deletions

View File

@ -35,14 +35,14 @@ public class CarStreamGenerator extends RdfStream implements Runnable {
this.put(new RdfQuadruple(
getIRI() + "/" + currentCar.getID(),
getIRI() + "#currentSpeed",
""+currentCar.getKilometersPerHour() + "^^http://www.w3.org/2001/XMLSchema#integer",
""+currentCar.getKilometersPerHour(),// + "^^http://www.w3.org/2001/XMLSchema#integer",
currentTime
)
);
this.put(new RdfQuadruple(
getIRI() + "/" + currentCar.getID(),
getIRI() + "#currentTemperature",
""+currentCar.getMotorTemperature() + "^^http://www.w3.org/2001/XMLSchema#integer",
""+currentCar.getMotorTemperature(),// + "^^http://www.w3.org/2001/XMLSchema#integer",
currentTime
)
);