Package org.fao.geonet.domain.responses

Examples of org.fao.geonet.domain.responses.StatusResponse


      while ((read = is.read(bytes)) != -1) {
        stream.write(bytes, 0, read);
      }
    } catch (Exception e) {
      return new StatusResponse(e.getMessage());
    } finally {
      if (stream != null) {
        stream.close();
      }
    }

    return new StatusResponse("Logo added.");
  }
View Full Code Here

TOP

Related Classes of org.fao.geonet.domain.responses.StatusResponse

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.