public interface Stream extends ChildOf<Streams>, Augmentable<Stream>, Identifiable<StreamKey>
This class represents the following YANG schema fragment defined in module ietf-restconf
list stream { key name; leaf name { type string; } leaf description { type string; } leaf replay-support { type boolean; } leaf replay-log-creation-time { type yang:date-and-time; } leaf events { type empty; } }The schema path to identify an instance is ietf-restconf/restconf/restconf/streams/stream
To create instances of this class use StreamBuilder
.
StreamBuilder
,
StreamKey
Modifier and Type | Field and Description |
---|---|
static org.opendaylight.yangtools.yang.common.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
@Nullable String |
getDescription()
Description of stream content
|
@Nullable String |
getName()
The stream name
|
@Nullable DateAndTime |
getReplayLogCreationTime()
Indicates the time the replay log for this streamwas created.
|
@Nullable Boolean |
isEvents()
Represents the entry point for establishingnotification delivery via server sent
events.
|
@Nullable Boolean |
isReplaySupport()
Indicates if replay buffer supported for this stream
|
StreamKey |
key()
Returns an unique key for the object.
|
getImplementedInterface
augmentation
@Nullable String getName()
java.lang.String
name
, or null
if not present@Nullable String getDescription()
java.lang.String
description
, or null
if not present@Nullable Boolean isReplaySupport()
java.lang.Boolean
replaySupport
, or null
if not present@Nullable DateAndTime getReplayLogCreationTime()
org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime
replayLogCreationTime
, or null
if not present@Nullable Boolean isEvents()
java.lang.Boolean
events
, or null
if not presentStreamKey key()
Identifiable
key
in interface Identifiable<StreamKey>
Copyright © 2019 OpenDaylight. All rights reserved.