From 54c2799f45256fef4a981fa2a6a7c97a9708ac8b Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 26 Jul 2007 12:01:44 +0000
Subject: [PATCH] Partial fix for issue 1831 - dsconfig interactive mode.
---
opends/src/server/org/opends/server/admin/AggregationRelationDefinition.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/admin/AggregationRelationDefinition.java b/opends/src/server/org/opends/server/admin/AggregationRelationDefinition.java
index dbd9300..fb699c1 100644
--- a/opends/src/server/org/opends/server/admin/AggregationRelationDefinition.java
+++ b/opends/src/server/org/opends/server/admin/AggregationRelationDefinition.java
@@ -70,7 +70,7 @@
// The path identifying the location of the referenced managed
// objects.
- private ManagedObjectPath path;
+ private ManagedObjectPath<?, ?> path;
// The plural name of the relation.
private final String pluralName;
@@ -131,7 +131,7 @@
* The path identifying the location of the referenced
* managed objects.
*/
- public void setPath(ManagedObjectPath path) {
+ public void setPath(ManagedObjectPath<?, ?> path) {
this.path = path;
}
@@ -157,7 +157,7 @@
// The path identifying the location of the referenced managed
// objects.
- private final ManagedObjectPath path;
+ private final ManagedObjectPath<?, ?> path;
// The plural name of the relation.
private final String pluralName;
@@ -166,7 +166,7 @@
// Private constructor.
private AggregationRelationDefinition(Common<C, S> common, String pluralName,
- ManagedObjectPath path, int minOccurs, int maxOccurs)
+ ManagedObjectPath<?, ?> path, int minOccurs, int maxOccurs)
throws IllegalArgumentException {
super(common);
@@ -228,7 +228,7 @@
* @return Returns the path identifying the location of the
* referenced managed objects.
*/
- public ManagedObjectPath getPath() {
+ public ManagedObjectPath<?, ?> getPath() {
return path;
}
--
Gitblit v1.10.0