- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了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
[英]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());
}
}
}
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
本文整理了Java中org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patc
我是一名优秀的程序员,十分优秀!