1 29 30 package com.caucho.boot; 31 32 import com.caucho.config.BuilderProgram; 33 34 public class ServerConfig { 35 private ClusterConfig _cluster; 36 37 private String _id = ""; 38 39 ServerConfig(ClusterConfig cluster) 40 { 41 _cluster = cluster; 42 } 43 44 public void setId(String id) 45 { 46 _id = id; 47 } 48 49 public String getId() 50 { 51 return _id; 52 } 53 54 57 public void addBuilderProgram(BuilderProgram program) 58 { 59 } 60 61 public String toString() 62 { 63 return "ServerConfig[" + _id + "]"; 64 } 65 } 66 | Popular Tags |