Package org.socialmusicdiscovery.server.business.model.core

Examples of org.socialmusicdiscovery.server.business.model.core.Label


        em.clear();
        labels = labelRepository.findAllWithRelations(null, null);
        assert labels.size()==1;

        em.clear();
        Label label = labelRepository.findById(labels.iterator().next().getId());
        assert label != null;

        labels = labelRepository.findByName("Arista");
        assert labels.size()==1;
        assert labels.iterator().next().getName().equals("Arista");
View Full Code Here

TOP

Related Classes of org.socialmusicdiscovery.server.business.model.core.Label

Copyright © 2018 www.massapicom. 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.