1 23 24 package org.infoglue.cms.entities.management.impl.simple; 25 26 27 import org.infoglue.cms.entities.kernel.BaseEntityVO; 28 import org.infoglue.cms.entities.management.ServerNode; 29 import org.infoglue.cms.entities.management.ServerNodeVO; 30 import org.infoglue.cms.exception.ConstraintException; 31 import org.infoglue.cms.exception.SystemException; 32 33 34 public class ServerNodeImpl implements ServerNode 35 { 36 private ServerNodeVO valueObject = new ServerNodeVO(); 37 38 public String toString() 39 { 40 return this.valueObject.toString(); 41 } 42 43 public Integer getId() 44 { 45 return this.getServerNodeId(); 46 } 47 48 public Object getIdAsObject() 49 { 50 return getId(); 51 } 52 53 public ServerNodeVO getValueObject() 54 { 55 return this.valueObject; 56 } 57 58 public void setValueObject(ServerNodeVO valueObject) 59 { 60 this.valueObject = valueObject; 61 } 62 65 public BaseEntityVO getVO() 66 { 67 return (BaseEntityVO) getValueObject(); 68 } 69 72 public void setVO(BaseEntityVO valueObject) 73 { 74 setValueObject((ServerNodeVO) valueObject); 75 } 76 77 public java.lang.Integer getServerNodeId() 78 { 79 return this.valueObject.getServerNodeId(); 80 } 81 82 public void setServerNodeId(java.lang.Integer serverNodeId) throws SystemException 83 { 84 this.valueObject.setServerNodeId(serverNodeId); 85 } 86 87 public java.lang.String getName() 88 { 89 return this.valueObject.getName(); 90 } 91 92 public void setName(java.lang.String name) throws ConstraintException 93 { 94 this.valueObject.setName(name); 95 } 96 97 public java.lang.String getDescription() 98 { 99 return this.valueObject.getDescription(); 100 } 101 102 public void setDescription(java.lang.String description) throws ConstraintException 103 { 104 this.valueObject.setDescription(description); 105 } 106 107 public java.lang.String getDnsName() 108 { 109 return this.valueObject.getDnsName(); 110 } 111 112 public void setDnsName(java.lang.String dnsName) throws ConstraintException 113 { 114 this.valueObject.setDnsName(dnsName); 115 } 116 117 } 118 | Popular Tags |