00001 #ifndef _IT_BUS_ID_H_ 00002 #define _IT_BUS_ID_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/ncname.h> 00011 00012 namespace IT_Reflect 00013 { 00014 class Reflection; 00015 template <class T> class ValueRef; 00016 } 00017 00018 namespace IT_Bus 00019 { 00024 class IT_AFC_API ID : public NCName 00025 { 00026 public: 00027 typedef IT_Reflect::ValueRef<IT_Bus::ID> IT_ReflectionType; 00028 00032 ID( 00033 ) throw(()); 00034 00043 ID( 00044 const String& value 00045 ) throw((IT_Bus::Exception)); 00046 00050 ID( 00051 const ID& copy 00052 ) throw(()); 00053 00057 ID& 00058 operator=( 00059 const ID& rhs 00060 ) throw(()); 00061 00067 static bool 00068 is_valid_id( 00069 const String& value 00070 ) throw(()); 00071 00072 // Implementation of methods from AnyType. 00073 // 00074 virtual AnyType& 00075 copy( 00076 const AnyType& copy 00077 ); 00078 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_ID_H_*/