Fixup checkstyle
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / persisted / ServerInfo.java
1 /*
2  * Copyright (c) 2015 Brocade Communications Systems, Inc. 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.controller.cluster.raft.persisted;
9
10 import static java.util.Objects.requireNonNull;
11
12 import org.eclipse.jdt.annotation.NonNull;
13
14 /**
15  * Server information. This class is not directly Serializable, as it is serialized directly as part of
16  * {@link ServerConfigurationPayload}.
17  *
18  * @author Thomas Pantelis
19  */
20 public record ServerInfo(@NonNull String peerId, boolean isVoting) {
21     public ServerInfo {
22         requireNonNull(peerId);
23     }
24 }