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

com.datastax.insight.agent.entity.ProjectModel Maven / Gradle / Ivy

package com.datastax.insight.agent.entity;

/**
 * Created by huangping on 07/01/2017.
 */
public class ProjectModel {

    private Long id;
    private Long projectId;
    private Long flowId;
    private String name;
    private String description;
    private String fileName;
    private String path;
    private String metrics;

    public Long getId() {
        return id;
    }

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

    public Long getProjectId() {
        return projectId;
    }

    public void setProjectId(Long projectId) {
        this.projectId = projectId;
    }

    public Long getFlowId() {
        return flowId;
    }

    public void setFlowId(Long flowId) {
        this.flowId = flowId;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }

    public String getMetrics() {
        return metrics;
    }

    public void setMetrics(String metrics) {
        this.metrics = metrics;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy