Add representations of RFC8040 query parameters
[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 java.net.URI;
14 import org.eclipse.jdt.annotation.NonNullByDefault;
15 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
16 import org.opendaylight.yangtools.concepts.Immutable;
17
18 /**
19  * Abstract base class for StartTimeParameter and StopTimeParameter.
20  */
21 @Beta
22 @NonNullByDefault
23 public abstract class AbstractReplayParameter implements Immutable {
24     private static final URI CAPABILITY = URI.create("urn:ietf:params:restconf:capability:replay:1.0");
25
26     private final DateAndTime value;
27
28     AbstractReplayParameter(final DateAndTime value) {
29         this.value = requireNonNull(value);
30     }
31
32     public final DateAndTime value() {
33         return value;
34     }
35
36     public final String uriValue() {
37         return value.getValue();
38     }
39
40     public static final URI capabilityUri() {
41         return CAPABILITY;
42     }
43 }