Package org.fluxtream.core.mvc.models

Examples of org.fluxtream.core.mvc.models.PhotoModel


    {
        final SortedSet<PhotoService.Photo> photos = photoService.getPhotos(guest.getId(), timeInterval, Connector.getConnector("fluxtream_capture").prettyName(), "photo", null);

        List<PhotoModel> photoModels = new ArrayList<PhotoModel>();
        for (final PhotoService.Photo photo : photos) {
            photoModels.add(new PhotoModel(photo.getAbstractPhotoFacetVO()));
        }

        return photoModels;
    }
View Full Code Here

TOP

Related Classes of org.fluxtream.core.mvc.models.PhotoModel

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.