blob: c74e85d31eea166b06b15b44a737e4a74e5180c8 [file] [log] [blame]
package net.onrc.onos.registry.controller;
//@JsonRootName("controller")
public class ControllerService {
private String controllerId;
public ControllerService(){
this("");
}
public ControllerService(String controllerId) {
this.controllerId = controllerId;
}
public void setControllerId(String controllerId) {
this.controllerId = controllerId;
}
public String getControllerId() {
return controllerId;
}
}