blob: e3d1a4da344ebd780d3e1dfd7f93dc92e3db2b98 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.ignite.network;
import java.util.List;
import org.apache.ignite.network.serialization.MessageSerializationRegistry;
/**
* Network configuration of a node.
*
* TODO: migrate to common configuration class when it's available, see
* https://issues.apache.org/jira/browse/IGNITE-14496
*/
public class ClusterLocalConfiguration {
/** The network alias of a node. */
private final String name;
/** The port. */
private final int port;
/** Addresses of other nodes. */
private final List<String> memberAddresses;
/** Message mapper providers. */
private final MessageSerializationRegistry serializationRegistry;
/**
* @param name Local name.
* @param port Local port.
* @param memberAddresses Other cluster member addresses.
* @param serializationRegistry Message serialization registry.
*/
public ClusterLocalConfiguration(
String name, int port, List<String> memberAddresses, MessageSerializationRegistry serializationRegistry
) {
this.name = name;
this.port = port;
this.memberAddresses = List.copyOf(memberAddresses);
this.serializationRegistry = serializationRegistry;
}
/**
* @return Network alias of a node.
*/
public String getName() {
return name;
}
/**
* @return Port.
*/
public int getPort() {
return port;
}
/**
* @return Addresses of other nodes.
*/
public List<String> getMemberAddresses() {
return memberAddresses;
}
/**
* @return Message serialization registry.
*/
public MessageSerializationRegistry getSerializationRegistry() {
return serializationRegistry;
}
}