00001 #ifndef _IT_BUS_TOKEN_H_
00002 #define _IT_BUS_TOKEN_H_
00003
00004
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/normalized_string.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 Token : public NormalizedString
00024 {
00025 public:
00026 typedef IT_Reflect::ValueRef<IT_Bus::Token> IT_ReflectionType;
00027
00031 Token(
00032 ) throw(());
00033
00039 Token(
00040 const String& value
00041 ) throw((IT_Bus::Exception));
00042
00046 Token(
00047 const Token& copy
00048 ) throw(());
00049
00053 Token&
00054 operator=(
00055 const Token& rhs
00056 ) throw(());
00057
00063 static bool
00064 is_valid_token(
00065 const String& value
00066 ) throw(());
00067
00068
00069
00070 virtual AnyType&
00071 copy(
00072 const AnyType& copy
00073 );
00074
00080 virtual const QName&
00081 get_type() const;
00082
00083 virtual IT_Reflect::Reflection*
00084 get_reflection(
00085 ) throw((IT_Reflect::ReflectException));
00086
00087 virtual const IT_Reflect::Reflection*
00088 get_reflection(
00089 ) const throw((IT_Reflect::ReflectException));
00090
00091
00092
00093 static const QName&
00094 get_static_type();
00095
00096 protected:
00104 virtual void
00105 validate_string(
00106 const String& value
00107 ) throw((IT_Bus::Exception));
00108 };
00109 }
00110
00111 #endif