mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

matthew_swift
26.01.2007 54c2799f45256fef4a981fa2a6a7c97a9708ac8b
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;
  }