Promote NotificationQueryParams
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / AbstractReplayParameter.java
1 /*
2  * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.restconf.nb.rfc8040;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.annotations.Beta;
13 import com.google.common.base.MoreObjects;
14 import java.net.URI;
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
17 import org.opendaylight.yangtools.concepts.Immutable;
18
19 /**
20  * Abstract base class for StartTimeParameter and StopTimeParameter.
21  */
22 @Beta
23 @NonNullByDefault
24 public abstract class AbstractReplayParameter implements Immutable {
25     private static final URI CAPABILITY = URI.create("urn:ietf:params:restconf:capability:replay:1.0");
26
27     private final DateAndTime value;
28
29     AbstractReplayParameter(final DateAndTime value) {
30         this.value = requireNonNull(value);
31     }
32
33     public final DateAndTime value() {
34         return value;
35     }
36
37     public final String uriValue() {
38         return value.getValue();
39     }
40
41     @Override
42     public final String toString() {
43         return MoreObjects.toStringHelper(this).add("value", uriValue()).toString();
44     }
45
46     public static final URI capabilityUri() {
47         return CAPABILITY;
48     }
49 }