Package io.fathom.cloud.image.api.os.model

Examples of io.fathom.cloud.image.api.os.model.Image


    protected Image toModel(ImageService.Image image) {
        return toModel(((ImageImpl) image).getData());
    }

    protected Image toModel(ImageData data) {
        Image image = new Image();

        image.isPublic = data.getIsPublic();
        if (data.getIsPublic()) {
            image.visibility = "public";
        } else {
View Full Code Here

TOP

Related Classes of io.fathom.cloud.image.api.os.model.Image

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.