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