* @throws ConstraintException
* @throws SystemException
*/
public ServerNodeVO create(ServerNodeVO vo) throws ConstraintException, SystemException
{
ServerNode ent = new ServerNodeImpl();
ent.setValueObject(vo);
ent = (ServerNode) createEntity(ent);
return ent.getValueObject();
}