blob: 9564aa01a55af9e19a7ab1a3d217a58c8f2ff2cd [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.cluster;
import java.util.Map;
import org.apache.ignite.configuration.IgniteConfiguration;
import org.jetbrains.annotations.Nullable;
/**
* Interface representing a single node from baseline topology.
*/
public interface BaselineNode {
/**
* Gets consistent globally unique node ID. This method returns consistent node ID which
* survives node restarts.
*
* @return Consistent globally unique node ID.
*/
public Object consistentId();
/**
* Gets a node attribute. Attributes are assigned to nodes at startup
* via {@link IgniteConfiguration#getUserAttributes()} method.
* <p>
* The system adds the following attributes automatically:
* <ul>
* <li>{@code {@link System#getProperties()}} - All system properties.</li>
* <li>{@code {@link System#getenv(String)}} - All environment properties.</li>
* <li>All attributes defined in {@link org.apache.ignite.internal.IgniteNodeAttributes}</li>
* </ul>
* <p>
* Note that attributes cannot be changed at runtime.
*
* @param <T> Attribute Type.
* @param name Attribute name. <b>Note</b> that attribute names starting with
* {@code org.apache.ignite} are reserved for internal use.
* @return Attribute value or {@code null}.
*/
@Nullable
public <T> T attribute(String name);
/**
* Gets all node attributes. Attributes are assigned to nodes at startup
* via {@link IgniteConfiguration#getUserAttributes()} method.
* <p>
* The system adds the following attributes automatically:
* <ul>
* <li>{@code {@link System#getProperties()}} - All system properties.</li>
* <li>{@code {@link System#getenv(String)}} - All environment properties.</li>
* <li>All attributes defined in {@link org.apache.ignite.internal.IgniteNodeAttributes}</li>
* </ul>
* <p>
* Note that attributes cannot be changed at runtime.
*
* @return All node attributes.
*/
public Map<String, Object> attributes();
}