00001
00002
00003
00004
00005
00006
00007 #ifndef COH_GENERIC_PRINCIPAL_HPP
00008 #define COH_GENERIC_PRINCIPAL_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/security/Principal.hpp"
00013
00014 COH_OPEN_NAMESPACE2(coherence,security)
00015
00016
00017
00018
00019
00020
00021
00022 class COH_EXPORT GenericPrincipal
00023 : public cloneable_spec<GenericPrincipal,
00024 extends<Object>,
00025 implements<Principal> >
00026 {
00027 friend class factory<GenericPrincipal>;
00028
00029
00030
00031 private:
00032
00033
00034
00035
00036
00037 GenericPrincipal(String::View vsName);
00038
00039
00040
00041
00042 GenericPrincipal(const GenericPrincipal& that);
00043
00044
00045
00046
00047 public:
00048
00049
00050
00051 virtual String::View getName() const;
00052
00053
00054
00055
00056 public:
00057
00058
00059
00060 virtual bool equals(Object::View vThat) const;
00061
00062
00063
00064
00065 virtual size32_t hashCode() const;
00066
00067
00068
00069
00070 virtual bool isImmutable() const;
00071
00072
00073
00074
00075 virtual TypedHandle<const String> toString() const;
00076
00077
00078
00079
00080 private:
00081
00082
00083
00084 FinalView<String> f_vsName;
00085 };
00086
00087 COH_CLOSE_NAMESPACE2
00088
00089 #endif // COH_GENERIC_PRINCIPAL_HPP