package com.dgrid.dao.model; import java.io.Serializable; import com.dgrid.gen.Host; public class HostSetting implements Serializable { /** * */ private static final long serialVersionUID = 410726248330439167L; private int id; private long timeCreated; private String name; private String value; private String description; private Host host; public HostSetting() { } public HostSetting(int id, long timeCreated, String name, String value, String description, Host host) { this.id = id; this.timeCreated = timeCreated; this.name = name; this.value = value; this.description = description; this.host = host; } public void setHost(Host host) { this.host = host; } public Host getHost() { return host; } public int getId() { return id; } public void setId(int id) { this.id = id; } public long getTimeCreated() { return timeCreated; } public void setTimeCreated(long timeCreated) { this.timeCreated = timeCreated; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }