} else if (value.equalsIgnoreCase("xml")) {
serializerType = SerializeType.XML;
} else if (value.equalsIgnoreCase("gaea")) {
serializerType = SerializeType.GAEABinary;
} else {
throw new NoSuchAttributeException("Protocol not supported " + value + "!");
}
this.serialize = SerializeBase.getInstance(serializerType);
attrSer = node.getAttributes().getNamedItem("encoder");
if (attrSer == null) {
this.Encoder = Charset.forName("UTF-8");