1 24 25 package org.objectweb.cjdbc.controller.virtualdatabase.protocol; 26 27 import java.io.Serializable ; 28 29 35 public class ControllerName implements Serializable 36 { 37 private static final long serialVersionUID = -2380753151132303045L; 38 39 private String controllerName; 40 private String jmxName; 41 42 48 public ControllerName(String controllerName, String controllerJmxName) 49 { 50 this.controllerName = controllerName; 51 this.jmxName = controllerJmxName; 52 } 53 54 57 public String getControllerName() 58 { 59 return controllerName; 60 } 61 62 65 public void setControllerName(String controllerName) 66 { 67 this.controllerName = controllerName; 68 } 69 70 75 public String getJmxName() 76 { 77 return jmxName; 78 } 79 80 85 public void setJmxName(String jmxName) 86 { 87 this.jmxName = jmxName; 88 } 89 } | Popular Tags |