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

artoria.data.Server Maven / Gradle / Ivy

The newest version!
package artoria.data;

import java.io.Serializable;

/**
 * Server.
 * @see Server (computing)
 * @author Kahle
 */
@Deprecated
public class Server implements Serializable {
    private String id;
    private String name;
    private String type;
    private String description;

    public String getId() {

        return id;
    }

    public void setId(String id) {

        this.id = id;
    }

    public String getName() {

        return name;
    }

    public void setName(String name) {

        this.name = name;
    }

    public String getType() {

        return type;
    }

    public void setType(String type) {

        this.type = type;
    }

    public String getDescription() {

        return description;
    }

    public void setDescription(String description) {

        this.description = description;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy