Package org.fao.geonet.repository

Examples of org.fao.geonet.repository.MetadataRelationRepository.findAll()


        } else {
            spec = MetadataRelationSpecs.hasRelatedId(id);
        }

        HashSet<Integer> results = new HashSet<Integer>();
        for (MetadataRelation metadataRelation : relationRepository.findAll(spec)) {
            if (findMetadataId) {
                results.add(metadataRelation.getId().getMetadataId());
            } else {
                results.add(metadataRelation.getId().getRelatedId());
            }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.