gpt4 book ai didi

org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patch.status.YangPatchStatus类的使用及代码示例

转载 作者:知者 更新时间:2024-03-19 07:15:31 29 4
gpt4 key购买 nike

本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patch.status.YangPatchStatus类的一些代码示例,展示了YangPatchStatus类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YangPatchStatus类的具体详情如下:
包路径:org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patch.status.YangPatchStatus
类名称:YangPatchStatus

YangPatchStatus介绍

[英]A container representing the response messagesent by the server after a YANG Patch editrequest message has been processed.

This class represents the following YANG schema fragment defined in module ietf-restconf

container yang-patch-status { 
leaf patch-id { 
type string; 
} 
choice global-status { 
case global-errors { 
uses errors; 
} 
case ok { 
leaf ok { 
type empty; 
} 
} 
} 
container edit-status { 
list edit { 
key edit-id; 
leaf edit-id { 
type string; 
} 
choice edit-status-choice { 
case ok { 
leaf ok { 
type empty; 
} 
} 
case location { 
leaf location { 
type inet:uri; 
} 
} 
case errors { 
uses errors; 
} 
} 
} 
} 
}

The schema path to identify an instance is ietf-restconf/yang-patch-status/yang-patch-status

To create instances of this class use YangPatchStatusBuilder.
[中]表示服务器在处理请求消息后发送的响应消息的容器。
这个类代表模块ietf restconf中定义的以下模式片段

container yang-patch-status { 
leaf patch-id { 
type string; 
} 
choice global-status { 
case global-errors { 
uses errors; 
} 
case ok { 
leaf ok { 
type empty; 
} 
} 
} 
container edit-status { 
list edit { 
key edit-id; 
leaf edit-id { 
type string; 
} 
choice edit-status-choice { 
case ok { 
leaf ok { 
type empty; 
} 
} 
case location { 
leaf location { 
type inet:uri; 
} 
} 
case errors { 
uses errors; 
} 
} 
} 
} 
}

标识实例的模式路径是ietf restconf/yang patch status/yang patch status
要创建此类的实例,请使用StatusBuilder。

代码示例

代码示例来源:origin: org.opendaylight.mdsal.model/ietf-restconf

public YangPatchStatusBuilder(YangPatchStatus base) {
  this._editStatus = base.getEditStatus();
  this._globalStatus = base.getGlobalStatus();
  this._patchId = base.getPatchId();
  if (base instanceof YangPatchStatusImpl) {
    YangPatchStatusImpl impl = (YangPatchStatusImpl) base;
    if (!impl.augmentation.isEmpty()) {
      this.augmentation = new HashMap<>(impl.augmentation);
    }
  } else if (base instanceof AugmentationHolder) {
    @SuppressWarnings("unchecked")
    Map<Class<? extends Augmentation<YangPatchStatus>>, Augmentation<YangPatchStatus>> aug =((AugmentationHolder<YangPatchStatus>) base).augmentations();
    if (!aug.isEmpty()) {
      this.augmentation = new HashMap<>(aug);
    }
  }
}

代码示例来源:origin: org.opendaylight.mdsal.model/ietf-restconf

if (!Objects.equals(_editStatus, other.getEditStatus())) {
  return false;
if (!Objects.equals(_globalStatus, other.getGlobalStatus())) {
  return false;
if (!Objects.equals(_patchId, other.getPatchId())) {
  return false;
    if (!e.getValue().equals(other.augmentation(e.getKey()))) {
      return false;

代码示例来源:origin: org.opendaylight.yangtools.model/ietf-restconf

if (other.getEditStatus() != null) {
    return false;
} else if(!_editStatus.equals(other.getEditStatus())) {
  return false;
  if (other.getGlobalStatus() != null) {
    return false;
} else if(!_globalStatus.equals(other.getGlobalStatus())) {
  return false;
  if (other.getPatchId() != null) {
    return false;
} else if(!_patchId.equals(other.getPatchId())) {
  return false;
    if (!e.getValue().equals(other.getAugmentation(e.getKey()))) {
      return false;

代码示例来源:origin: org.opendaylight.yangtools.model/ietf-restconf

public YangPatchStatusBuilder(YangPatchStatus base) {
  this._editStatus = base.getEditStatus();
  this._globalStatus = base.getGlobalStatus();
  this._patchId = base.getPatchId();
  if (base instanceof YangPatchStatusImpl) {
    YangPatchStatusImpl impl = (YangPatchStatusImpl) base;
    if (!impl.augmentation.isEmpty()) {
      this.augmentation = new HashMap<>(impl.augmentation);
    }
  } else if (base instanceof AugmentationHolder) {
    @SuppressWarnings("unchecked")
    AugmentationHolder<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patch.status.YangPatchStatus> casted =(AugmentationHolder<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patch.status.YangPatchStatus>) base;
    if (!casted.augmentations().isEmpty()) {
      this.augmentation = new HashMap<>(casted.augmentations());
    }
  }
}

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com