summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 07:54:49 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-12 07:54:49 +0000
commit7aa9fc442f7fa830226f128a0c72af6d3ae49905 (patch)
treeca67b90f907b4280abebcd8718d992fd8a8dd2f3 /TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp
parentfa9c845ca5d5bb3130669ce3bb53177dc26b983a (diff)
downloadATCD-7aa9fc442f7fa830226f128a0c72af6d3ae49905.tar.gz
Mon Feb 12 06:50:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp
index 0ced0341ca0..bda9edab8c9 100644
--- a/TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp
+++ b/TAO/orbsvcs/orbsvcs/PortableGroup/PG_PropertyManager.cpp
@@ -28,9 +28,6 @@ TAO_PG_PropertyManager::TAO_PG_PropertyManager (
void
TAO_PG_PropertyManager::set_default_properties (
const PortableGroup::Properties & props)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
// First verify that the "Factories" property is not in the
// Properties sequence. According to the spec, it is not allowed to
@@ -58,7 +55,6 @@ TAO_PG_PropertyManager::set_default_properties (
PortableGroup::Properties *
TAO_PG_PropertyManager::get_default_properties ()
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, guard, this->lock_, 0);
@@ -78,9 +74,6 @@ TAO_PG_PropertyManager::get_default_properties ()
void
TAO_PG_PropertyManager::remove_default_properties (
const PortableGroup::Properties &props)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
if (props.length () == 0)
return; // @@ Throw CORBA::BAD_PARAM instead?
@@ -96,9 +89,6 @@ void
TAO_PG_PropertyManager::set_type_properties (
const char * type_id,
const PortableGroup::Properties & overrides)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
this->property_validator_.validate_property (overrides);
@@ -121,7 +111,6 @@ TAO_PG_PropertyManager::set_type_properties (
PortableGroup::Properties *
TAO_PG_PropertyManager::get_type_properties (
const char * type_id)
- ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_GUARD_RETURN (TAO_SYNCH_MUTEX, guard, this->lock_, 0);
@@ -168,9 +157,6 @@ void
TAO_PG_PropertyManager::remove_type_properties (
const char * type_id,
const PortableGroup::Properties & props)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
if (props.length () == 0)
return; // @@ Throw CORBA::BAD_PARAM instead?
@@ -192,10 +178,6 @@ void
TAO_PG_PropertyManager::set_properties_dynamically (
PortableGroup::ObjectGroup_ptr /* object_group */,
const PortableGroup::Properties & /* overrides */)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableGroup::ObjectGroupNotFound,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
#if 0
// First verify that the "InitialNumberMembers" property is not in
@@ -227,8 +209,6 @@ TAO_PG_PropertyManager::set_properties_dynamically (
PortableGroup::Properties *
TAO_PG_PropertyManager::get_properties (
PortableGroup::ObjectGroup_ptr object_group)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableGroup::ObjectGroupNotFound))
{
CORBA::ULong properties_len = 0;
@@ -296,9 +276,6 @@ void
TAO_PG_PropertyManager::remove_properties (
const PortableGroup::Properties & to_be_removed,
PortableGroup::Properties &properties)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableGroup::InvalidProperty,
- PortableGroup::UnsupportedProperty))
{
const CORBA::ULong num_removed = to_be_removed.length ();
if (num_removed == 0)