#include <IdUniquenessPolicy.h>
Inheritance diagram for TAO::Portable_Server::IdUniquenessPolicy:
Public Member Functions | |
IdUniquenessPolicy (::PortableServer::IdUniquenessPolicyValue value) | |
CORBA::Policy_ptr | copy (void) |
void | destroy (void) |
::PortableServer::IdUniquenessPolicyValue | value (void) |
CORBA::PolicyType | policy_type (void) |
virtual TAO_Cached_Policy_Type | _tao_cached_type (void) const |
Return the cached policy type for this policy. | |
virtual TAO_Policy_Scope | _tao_scope (void) const |
Returns the scope at which this policy can be applied. See orbconf.h. | |
Private Attributes | |
::PortableServer::IdUniquenessPolicyValue | value_ |
|
Definition at line 18 of file IdUniquenessPolicy.cpp.
00019 : 00020 value_ (value) 00021 { 00022 } |
|
Return the cached policy type for this policy.
Implements CORBA::Policy. Definition at line 53 of file IdUniquenessPolicy.cpp. References TAO_CACHED_POLICY_ID_UNIQUENESS.
00054 { 00055 return TAO_CACHED_POLICY_ID_UNIQUENESS; 00056 } |
|
Returns the scope at which this policy can be applied. See orbconf.h.
Implements CORBA::Policy. Definition at line 59 of file IdUniquenessPolicy.cpp. References TAO_POLICY_POA_SCOPE.
00060 { 00061 return TAO_POLICY_POA_SCOPE; 00062 } |
|
Implements CORBA::Policy. Definition at line 25 of file IdUniquenessPolicy.cpp. References ACE_NEW_THROW_EX.
00026 { 00027 IdUniquenessPolicy *copy = 0; 00028 ACE_NEW_THROW_EX (copy, 00029 IdUniquenessPolicy (this->value_), 00030 CORBA::NO_MEMORY ()); 00031 00032 return copy; 00033 } |
|
Implements CORBA::Policy. Definition at line 36 of file IdUniquenessPolicy.cpp.
00037 { 00038 } |
|
Implements CORBA::Policy. Definition at line 47 of file IdUniquenessPolicy.cpp.
00048 { 00049 return ::PortableServer::ID_UNIQUENESS_POLICY_ID; 00050 } |
|
Definition at line 41 of file IdUniquenessPolicy.cpp.
00042 { 00043 return value_; 00044 } |
|
Definition at line 63 of file IdUniquenessPolicy.h. |