/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package at.ac.tuwien.dsg.comot.elise.collector.mela; /** * * @author Duc-Hung LE */ public class ElasticServiceList { String id; public ElasticServiceList() { } public ElasticServiceList(String id) { this.id = id; } public String getId() { return id; } public void setId(String id) { this.id = id; } }