summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rw-r--r--org/omg/PortableServer/IdAssignmentPolicyOperations.java2
-rw-r--r--org/omg/PortableServer/IdUniquenessPolicyOperations.java2
-rw-r--r--org/omg/PortableServer/ImplicitActivationPolicyOperations.java2
-rw-r--r--org/omg/PortableServer/LifespanPolicyOperations.java2
-rw-r--r--org/omg/PortableServer/RequestProcessingPolicyOperations.java2
-rw-r--r--org/omg/PortableServer/ServantRetentionPolicyOperations.java2
-rw-r--r--org/omg/PortableServer/ThreadPolicyOperations.java2
8 files changed, 25 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c5a4a7c4..6d4fed7dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2005-07-22 Audrius Meskauskas <AudriusA@Bioinformatics.org>
+
+ * org/omg/PortableServer/RequestProcessingPolicyOperations.java,
+ org/omg/PortableServer/ServantRetentionPolicyOperations.java,
+ org/omg/PortableServer/ThreadPolicyOperations.java,
+ org/omg/PortableServer/IdAssignmentPolicyOperations.java,
+ org/omg/PortableServer/IdUniquenessPolicyOperations.java,
+ org/omg/PortableServer/ImplicitActivationPolicyOperations.java,
+ org/omg/PortableServer/LifespanPolicyOperations.java:
+ Inherit from PolicyOperations.
+
2005-07-22 Anthony Balkissoon <abalkiss@redhat.com>
* javax/swing/plaf/basic/BasicTableUI.java:
diff --git a/org/omg/PortableServer/IdAssignmentPolicyOperations.java b/org/omg/PortableServer/IdAssignmentPolicyOperations.java
index 7fa5de43a..993a7804a 100644
--- a/org/omg/PortableServer/IdAssignmentPolicyOperations.java
+++ b/org/omg/PortableServer/IdAssignmentPolicyOperations.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package org.omg.PortableServer;
+import org.omg.CORBA.PolicyOperations;
/**
* Defines the operations, applicable to the IdAssignmentPolicy.
@@ -45,6 +46,7 @@ package org.omg.PortableServer;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface IdAssignmentPolicyOperations
+ extends PolicyOperations
{
/**
* Return the value of this policy type, stated by the current instance.
diff --git a/org/omg/PortableServer/IdUniquenessPolicyOperations.java b/org/omg/PortableServer/IdUniquenessPolicyOperations.java
index 45e3d60a0..3019396b5 100644
--- a/org/omg/PortableServer/IdUniquenessPolicyOperations.java
+++ b/org/omg/PortableServer/IdUniquenessPolicyOperations.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package org.omg.PortableServer;
+import org.omg.CORBA.PolicyOperations;
/**
* Defines the operations, applicable to the IdUniquenessPolicy.
@@ -45,6 +46,7 @@ package org.omg.PortableServer;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface IdUniquenessPolicyOperations
+ extends PolicyOperations
{
/**
* Return the value of this policy type, stated by the current instance.
diff --git a/org/omg/PortableServer/ImplicitActivationPolicyOperations.java b/org/omg/PortableServer/ImplicitActivationPolicyOperations.java
index f88ebba57..d855ec82e 100644
--- a/org/omg/PortableServer/ImplicitActivationPolicyOperations.java
+++ b/org/omg/PortableServer/ImplicitActivationPolicyOperations.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package org.omg.PortableServer;
+import org.omg.CORBA.PolicyOperations;
/**
* Defines the operations, applicable to the ImplicitActivationPolicy.
@@ -45,6 +46,7 @@ package org.omg.PortableServer;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface ImplicitActivationPolicyOperations
+ extends PolicyOperations
{
/**
* Return the value of this policy type, stated by the current instance.
diff --git a/org/omg/PortableServer/LifespanPolicyOperations.java b/org/omg/PortableServer/LifespanPolicyOperations.java
index 70e3733ba..20eda700e 100644
--- a/org/omg/PortableServer/LifespanPolicyOperations.java
+++ b/org/omg/PortableServer/LifespanPolicyOperations.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package org.omg.PortableServer;
+import org.omg.CORBA.PolicyOperations;
/**
* Defines the operations, applicable to the LifespanPolicy.
@@ -45,6 +46,7 @@ package org.omg.PortableServer;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface LifespanPolicyOperations
+ extends PolicyOperations
{
/**
* Return the value of this policy type, stated by the current instance.
diff --git a/org/omg/PortableServer/RequestProcessingPolicyOperations.java b/org/omg/PortableServer/RequestProcessingPolicyOperations.java
index 490946cdd..672ba1846 100644
--- a/org/omg/PortableServer/RequestProcessingPolicyOperations.java
+++ b/org/omg/PortableServer/RequestProcessingPolicyOperations.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package org.omg.PortableServer;
+import org.omg.CORBA.PolicyOperations;
/**
* Defines the operations, applicable to the RequestProcessingPolicy.
@@ -45,6 +46,7 @@ package org.omg.PortableServer;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface RequestProcessingPolicyOperations
+ extends PolicyOperations
{
/**
* Return the value of this policy type, stated by the current instance.
diff --git a/org/omg/PortableServer/ServantRetentionPolicyOperations.java b/org/omg/PortableServer/ServantRetentionPolicyOperations.java
index cec142d9c..2ef0ab554 100644
--- a/org/omg/PortableServer/ServantRetentionPolicyOperations.java
+++ b/org/omg/PortableServer/ServantRetentionPolicyOperations.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package org.omg.PortableServer;
+import org.omg.CORBA.PolicyOperations;
/**
* Defines the operations, applicable to the ServantRetentionPolicy.
@@ -45,6 +46,7 @@ package org.omg.PortableServer;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface ServantRetentionPolicyOperations
+ extends PolicyOperations
{
/**
* Return the value of this policy type, stated by the current instance.
diff --git a/org/omg/PortableServer/ThreadPolicyOperations.java b/org/omg/PortableServer/ThreadPolicyOperations.java
index dcabc85f1..b36628816 100644
--- a/org/omg/PortableServer/ThreadPolicyOperations.java
+++ b/org/omg/PortableServer/ThreadPolicyOperations.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package org.omg.PortableServer;
+import org.omg.CORBA.PolicyOperations;
/**
* Defines the operations, applicable to the ThreadPolicy.
@@ -45,6 +46,7 @@ package org.omg.PortableServer;
* @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
*/
public interface ThreadPolicyOperations
+ extends PolicyOperations
{
/**
* Return the value of this policy type, stated by the current instance.