/* * Copyright (c) 2022 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.controller.cluster.access.commands; import static com.google.common.base.Verify.verifyNotNull; import static java.util.Objects.requireNonNull; import java.io.ObjectInput; import org.opendaylight.controller.cluster.access.concepts.TransactionIdentifier; /** * Externalizable proxy for use with {@link IncrementTransactionSequenceSuccess}. It implements the Chlorine SR2 * serialization format. */ final class ITSS implements TransactionSuccess.SerialForm { @java.io.Serial private static final long serialVersionUID = 1L; private IncrementTransactionSequenceSuccess message; @SuppressWarnings("checkstyle:RedundantModifier") public ITSS() { // for Externalizable } ITSS(final IncrementTransactionSequenceSuccess message) { this.message = requireNonNull(message); } @Override public IncrementTransactionSequenceSuccess message() { return verifyNotNull(message); } @Override public void setMessage(final IncrementTransactionSequenceSuccess message) { this.message = requireNonNull(message); } @Override public IncrementTransactionSequenceSuccess readExternal(final ObjectInput it, final TransactionIdentifier target, final long sequence) { return new IncrementTransactionSequenceSuccess(target, sequence); } @Override public Object readResolve() { return message(); } }