AbstractIdentification changes for revisions 24867:24868

This contribution adds a method signature as a consequence of a GeoAPI change, but no real implementation. It looks like an auto-generated method from the IDE. NetBeans provides similar skeleton, and Geotk/SIS completes with a real implementation.

Command line:

svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r24867:24868 https://svn.osgeo.org/geotools/trunk/modules/library/metadata/src/main/java/org/geotools/metadata/iso/identification/IdentificationImpl.java
Revision 24867Revision 24868
// J2SE direct dependencies
import java.util.Collection;

// OpenGIS dependencies
import org.opengis.metadata.citation.Citation;
// J2SE direct dependencies
import java.util.Collection;
import java.util.Collections;

// OpenGIS dependencies
import org.opengis.metadata.citation.Citation;
    public String toString() {
        return String.valueOf(resourceMaintenance);
    }
}
    public String toString() {
        return String.valueOf(resourceMaintenance);
    }

    /** @return Collection<AggregateInformation> */
    public Collection getAggregateInfo() {
        return Collections.EMPTY_LIST; // TODO: store provided information
}
}