/* * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.restconf.nb.rfc8040; import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime; /** * This class represents a {@code stop-time} parameter as defined in * RFC8040 section 4.8.8. */ public final class StopTimeParam extends AbstractReplayParam { // API consistency: must not be confused with enum constants @SuppressWarnings("checkstyle:ConstantName") public static final @NonNull String uriName = "stop-time"; private StopTimeParam(final DateAndTime value) { super(value); } public static @NonNull StopTimeParam of(final DateAndTime value) { return new StopTimeParam(value); } @Override public Class<@NonNull StopTimeParam> javaClass() { return StopTimeParam.class; } @Override public String paramName() { return uriName; } public static @NonNull StopTimeParam forUriValue(final String uriValue) { return of(new DateAndTime(uriValue)); } }