00001
00002
00003
00004
00005
00006
00007 #ifndef COH_CONFIGURABLE_SERIALIZER_FACTORY_HPP
00008 #define COH_CONFIGURABLE_SERIALIZER_FACTORY_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/io/Serializer.hpp"
00013 #include "coherence/io/SerializerFactory.hpp"
00014 #include "coherence/run/xml/XmlConfigurable.hpp"
00015 #include "coherence/run/xml/XmlElement.hpp"
00016
00017 COH_OPEN_NAMESPACE2(coherence,io)
00018
00019 using coherence::run::xml::XmlConfigurable;
00020 using coherence::run::xml::XmlElement;
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 class COH_EXPORT ConfigurableSerializerFactory
00031 : public class_spec<ConfigurableSerializerFactory,
00032 extends<Object>,
00033 implements<SerializerFactory, XmlConfigurable> >
00034 {
00035 friend class factory<ConfigurableSerializerFactory>;
00036
00037
00038
00039 protected:
00040
00041
00042
00043
00044
00045
00046 ConfigurableSerializerFactory();
00047
00048
00049
00050
00051 public:
00052
00053
00054
00055 virtual Serializer::View createSerializer(ClassLoader::View vLoader) const;
00056
00057
00058
00059
00060 public:
00061
00062
00063
00064 virtual void setConfig(XmlElement::View xml);
00065
00066
00067
00068
00069 virtual XmlElement::View getConfig() const;
00070
00071
00072
00073
00074 public:
00075
00076
00077
00078 virtual TypedHandle<const String> toString() const;
00079
00080
00081
00082
00083 protected:
00084
00085
00086
00087 FinalView<XmlElement> f_vXmlConfig;
00088 };
00089
00090 COH_CLOSE_NAMESPACE2
00091
00092 #endif // COH_CONFIGURABLE_SERIALIZER_FACTORY_HPP