All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.aipark.api.parkevent.ParkEventLiveLeavingIntern Maven / Gradle / Ivy

package de.aipark.api.parkevent;

import com.vividsolutions.jts.geom.Point;
import de.aipark.api.datasource.Datasource;
import io.swagger.annotations.ApiModelProperty;

import java.sql.Timestamp;

/**
 * Created by torgen on 31.12.17.
 */
public class ParkEventLiveLeavingIntern {
    private Long id;

    private Point point;

    @ApiModelProperty(required = true, dataType = "java.lang.Long", example = "1480000979212", value = "UNIX time (since 1970) in milliseconds")
    private Timestamp timestamp;

    private Datasource datasource;

    public ParkEventLiveLeavingIntern() {

    }

    public ParkEventLiveLeavingIntern(Long id, Point point, Timestamp timestamp, Datasource datasource) {
        this.id = id;
        this.point = point;
        this.timestamp = timestamp;
        this.datasource = datasource;
    }

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public Point getPoint() {
        return point;
    }

    public void setPoint(Point point) {
        this.point = point;
    }

    public Timestamp getTimestamp() {
        return timestamp;
    }

    public void setTimestamp(Timestamp timestamp) {
        this.timestamp = timestamp;
    }

    public Datasource getDatasource() {
        return datasource;
    }

    public void setDatasource(Datasource datasource) {
        this.datasource = datasource;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy