Remove "/" sign in AbstractRestconfStreamRegistry
[netconf.git] / restconf / restconf-nb / src / main / java / org / opendaylight / restconf / server / api / DataPatchResult.java
1 /*
2  * Copyright (c) 2023 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.server.api;
9
10 import java.time.Instant;
11 import org.eclipse.jdt.annotation.Nullable;
12
13 /**
14  * Result of a {@code PATCH} request as defined in
15  * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-4.6.1">RFC8040, section 4.6.1</a>.
16  *
17  * @param entityTag response {@code ETag} header, or {@code null} if not applicable
18  * @param lastModified response {@code Last-Modified} header, or {@code null} if not applicable
19  */
20 public record DataPatchResult(
21         @Nullable EntityTag entityTag,
22         @Nullable Instant lastModified) implements ConfigurationMetadata {
23     public DataPatchResult() {
24         this(null, null);
25     }
26 }