Package org.dtk.resources.build

Examples of org.dtk.resources.build.BuildRequest.serialise()


    // Instantiate new build request with user parameters, catch construction exceptions
    // and throw extended WebApplicationException.
    BuildRequest buildRequest;
    try {
      buildRequest = new BuildRequest(packages, cdn, optimise, cssOptimise, platforms, themes, layers);
      logger.log(Level.INFO, String.format(newBuildRequestLogMsg, buildRequest.serialise()));
    } catch (JsonMappingException e) {
      logFatalBuildRequest(buildDetails, e);
      throw new IncorrectParameterException(layersParsingErrorText);
    } catch (JsonParseException e) {
      logFatalBuildRequest(buildDetails, e);
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.