9e9c3b9b4b82aa5fb95eb54fedbd1e5247fb5d89
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / PointParam.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 org.eclipse.jdt.annotation.NonNull;
13 import org.eclipse.jdt.annotation.NonNullByDefault;
14
15 /**
16  * This class represents a {@code point} parameter as defined in
17  * <a href="https://datatracker.ietf.org/doc/html/rfc8040#section-4.8.4">RFC8040 section 4.8.4</a>.
18  */
19 @NonNullByDefault
20 public final class PointParam implements RestconfQueryParam<PointParam> {
21     // API consistency: must not be confused with enum constants
22     @SuppressWarnings("checkstyle:ConstantName")
23     public static final String uriName = "point";
24
25     // FIXME: This should be ApiPath
26     private final String value;
27
28     private PointParam(final String value) {
29         this.value = requireNonNull(value);
30     }
31
32     @Override
33     public Class<@NonNull PointParam> javaClass() {
34         return PointParam.class;
35     }
36
37     @Override
38     public String paramName() {
39         return uriName;
40     }
41
42     @Override
43     public String paramValue() {
44         return value;
45     }
46
47     public static PointParam forUriValue(final String uriValue) {
48         return new PointParam(uriValue);
49     }
50
51     public String value() {
52         return value;
53     }
54 }