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

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


    @GET
    @Path("detail")
    @Produces({ JSON })
    public ImageListResponse doImageDetailsGet() throws CloudException {
        ImageListResponse response = new ImageListResponse();

        response.images = Lists.newArrayList();

        ImageFilter filter = new ImageFilter();
        filter.name = httpRequest.getParameter("name");
View Full Code Here

TOP

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

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.