Main Page | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members

it_bus/any_uri.h

00001 #ifndef _IT_BUS_ANYURI_H_
00002 #define _IT_BUS_ANYURI_H_
00003 
00004 // @Copyright 2004 IONA Technologies, Plc. All Rights Reserved.
00005 //
00006 
00007 #include <it_cal/types.h>
00008 #include <it_bus/exception.h>
00009 #include <it_bus/api_defines.h>
00010 #include <it_bus/any_simple_type.h>
00011 
00012 namespace IT_Reflect
00013 {
00014     class Reflection;
00015     template <class T> class ValueRef;
00016 }
00017 
00018 namespace IT_Bus
00019 {
00020     class IT_AFC_API AnyURI : public AnySimpleType
00021     {
00022       public:
00023         typedef IT_Reflect::ValueRef<IT_Bus::AnyURI> IT_ReflectionType;
00024 
00025         AnyURI(
00026         ) throw(());
00027 
00028         AnyURI(
00029             const String& uri
00030         ) throw((IT_Bus::Exception));
00031 
00032         AnyURI(
00033             const AnyURI& copy
00034         ) throw(());
00035 
00036         AnyURI&
00037         operator=(
00038             const AnyURI& rhs
00039         ) throw(());
00040 
00041         const String&
00042         get_uri(
00043         ) const throw(());
00044 
00045         void
00046         set_uri(
00047             const String& uri
00048         ) throw((IT_Bus::Exception));
00049 
00050         static bool
00051         is_valid_uri(
00052             const String& uri
00053         ) throw(());
00054 
00055         // Implementation of methods from AnyType.
00056         //
00057         virtual AnyType&
00058         copy(
00059             const AnyType& copy
00060         );
00061 
00062         virtual AnyType::Kind
00063         get_kind() const;
00064 
00065         virtual const QName&
00066         get_type() const;
00067 
00068         virtual IT_Reflect::Reflection*
00069         get_reflection(
00070         ) throw((IT_Reflect::ReflectException));
00071         
00072         virtual const IT_Reflect::Reflection*
00073         get_reflection(
00074         ) const throw((IT_Reflect::ReflectException));
00075 
00076         // Implementation of methods from AnySimpleType.
00077         //
00078         virtual void
00079         write_value(
00080             AnySimpleTypeWriter& writer
00081         ) const throw((IT_Bus::SerializationException));
00082 
00083         virtual void
00084         read_value(
00085             AnySimpleTypeReader& reader
00086         ) throw((IT_Bus::DeserializationException));
00087 
00088         // Used by SchemaTypeTraits.
00089         //
00090         static const QName&
00091         get_static_type();
00092 
00093       private:
00094 
00095         String m_uri;
00096     };
00097 
00098     inline bool
00099     operator==(
00100         const AnyURI& lhs,
00101         const AnyURI& rhs
00102     ) throw(())
00103     {
00104         return lhs.get_uri() == rhs.get_uri();
00105     }
00106 
00107     inline bool
00108     operator!=(
00109         const AnyURI& lhs,
00110         const AnyURI& rhs
00111     ) throw(())
00112     {
00113         return lhs.get_uri() != rhs.get_uri();
00114     }
00115 }
00116 
00117 #endif /*_IT_BUS_ANYURI_H_*/

Generated on Wed Mar 22 12:22:58 2006 for Artix by  doxygen 1.3.9.1