00001 #ifndef _IT_BUS_NCNAME_H_ 00002 #define _IT_BUS_NCNAME_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/name.h> 00011 00012 namespace IT_Reflect 00013 { 00014 class Reflection; 00015 template <class T> class ValueRef; 00016 } 00017 00018 namespace IT_Bus 00019 { 00023 class IT_AFC_API NCName : public Name 00024 { 00025 public: 00026 typedef IT_Reflect::ValueRef<IT_Bus::NCName> IT_ReflectionType; 00027 00031 NCName( 00032 ) throw(()); 00033 00042 NCName( 00043 const String& value 00044 ) throw((IT_Bus::Exception)); 00045 00049 NCName( 00050 const NCName& copy 00051 ) throw(()); 00052 00056 NCName& 00057 operator=( 00058 const NCName& rhs 00059 ) throw(()); 00060 00066 static bool 00067 is_valid_ncname( 00068 const String& value 00069 ) throw(()); 00070 00071 // Implementation of methods from AnyType. 00072 // 00073 virtual AnyType& 00074 copy( 00075 const AnyType& copy 00076 ); 00077 00084 virtual const QName& 00085 get_type() const; 00086 00087 virtual IT_Reflect::Reflection* 00088 get_reflection( 00089 ) throw((IT_Reflect::ReflectException)); 00090 00091 virtual const IT_Reflect::Reflection* 00092 get_reflection( 00093 ) const throw((IT_Reflect::ReflectException)); 00094 00095 // Used by SchemaTypeTraits. 00096 // 00097 static const QName& 00098 get_static_type(); 00099 00100 protected: 00107 virtual void 00108 validate_string( 00109 const String& value 00110 ) throw((IT_Bus::Exception)); 00111 }; 00112 } 00113 00114 #endif /*_IT_BUS_NCNAME_H_*/