Package com.socrata.api

Examples of com.socrata.api.SodaWorkflow.publish()


          privateMetadata.put("contactEmail", contactInfo);

          updater.updateDatasetInfo(datasetInfo);

          if (!StringUtils.isBlank(workingCopyDatasetId)) {
            workflower.publish(datasetInfo.getId());
            workingCopyDatasetId = null;
          }
          noExceptions = true;
        }
      }
View Full Code Here


        runStatus = JobStatus.PUBLISH_ERROR;
      }
      finally {
        try {
          if (!StringUtils.isBlank(workingCopyDatasetId))  {
            workflower.publish(workingCopyDatasetId);
          }
        }
        catch(Exception e) {
          runErrorMessage += " | Unable to publish dataset after updates";
          runStatus = JobStatus.PUBLISH_ERROR;
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.