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

nl.renarj.jasdb.rest.model.NodeServiceInformation Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package nl.renarj.jasdb.rest.model;

import java.util.Map;

/**
 * @author Renze de Vries
 */
public class NodeServiceInformation {
    private Map properties;
    private String serviceType;

    public NodeServiceInformation() {

    }

    public String getServiceType() {
        return serviceType;
    }

    public void setServiceType(String serviceType) {
        this.serviceType = serviceType;
    }

    public Map getProperties() {
        return properties;
    }

    public void setProperties(Map properties) {
        this.properties = properties;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy