public interface Edit extends ChildOf<EditStatus>, Augmentable<Edit>, Identifiable<EditKey>
This class represents the following YANG schema fragment defined in module ietf-restconf
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/edit-status/edit
To create instances of this class use EditBuilder
.
EditBuilder
,
EditKey
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable String |
getEditId()
Response status is for the edit list entrywith this edit-id value.
|
@Nullable EditStatusChoice |
getEditStatusChoice()
A choice between different types of statusresponses for each edit entry.
|
EditKey |
key()
Returns an unique key for the object.
|
getImplementedInterface
augmentation
@Nullable String getEditId()
java.lang.String
editId
, or null
if not present@Nullable EditStatusChoice getEditStatusChoice()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.restconf.rev131019.yang.patch.status.yang.patch.status.edit.status.edit.EditStatusChoice
editStatusChoice
, or null
if not presentEditKey key()
Identifiable
key
in interface Identifiable<EditKey>
Copyright © 2019 OpenDaylight. All rights reserved.