Examples of FluxtreamCapturePhotoFacet


Examples of org.fluxtream.core.connectors.fluxtream_capture.FluxtreamCapturePhotoFacet

        return executeFacetMetaDataOperation(uid, "FluxtreamCapture", "photo", facetId, new FacetMetaDataOperation() {
            @Override
            @NotNull
            public Response executeOperation(@NotNull final AbstractFacet facet) {
                FluxtreamCapturePhotoFacet photoFacet = (FluxtreamCapturePhotoFacet) facet;
                final String photoStoreKey = FluxtreamCapturePhoto.createPhotoStoreKey(photoFacet.guestId, photoFacet.getCaptureYYYYDDD(), photoFacet.start, photoFacet.getHash());
                try {
                    fluxtreamCapturePhotoStore.deletePhoto(photoStoreKey);
                    facetDao.delete(facet);
                } catch (FluxtreamCapturePhotoStore.StorageException e) {
                    return Response.serverError().build();
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.