com.netflix.spinnaker.orca.pipeline.model.Execution.getNotifications()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(119)

本文整理了Java中com.netflix.spinnaker.orca.pipeline.model.Execution.getNotifications()方法的一些代码示例,展示了Execution.getNotifications()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Execution.getNotifications()方法的具体详情如下:
包路径:com.netflix.spinnaker.orca.pipeline.model.Execution
类名称:Execution
方法名:getNotifications

Execution.getNotifications介绍

暂无

代码示例

代码示例来源:origin: com.netflix.spinnaker.orca/orca-core

public PipelineBuilder withNotifications(List<Map<String, Object>> notifications) {
 pipeline.getNotifications().clear();
 if (notifications != null) {
  pipeline.getNotifications().addAll(notifications);
 }
 return this;
}

代码示例来源:origin: com.netflix.spinnaker.orca/orca-redis

map.put("name", execution.getName());
 map.put("pipelineConfigId", execution.getPipelineConfigId());
 map.put("notifications", mapper.writeValueAsString(execution.getNotifications()));
 map.put("initialConfig", mapper.writeValueAsString(execution.getInitialConfig()));
} catch (JsonProcessingException e) {

代码示例来源:origin: com.netflix.spinnaker.orca/orca-redis

try {
 if (map.get("notifications") != null) {
  execution.getNotifications().addAll(mapper.readValue(map.get("notifications"), List.class));

相关文章