All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hazelcast.config.MemberAttributeConfig Maven / Gradle / Ivy

There is a newer version: 4.5.4
Show newest version
/*
 * Copyright (c) 2008-2018, Hazelcast, Inc. All Rights Reserved.
 *
 * Licensed 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 com.hazelcast.config;


import java.util.HashMap;
import java.util.Map;

/**
 * Contains configuration for attribute of member.
 */
public class MemberAttributeConfig {

    private final Map attributes = new HashMap();

    public MemberAttributeConfig() {
    }

    public MemberAttributeConfig(MemberAttributeConfig source) {
        attributes.putAll(source.attributes);
    }

    public Map getAttributes() {
        return attributes;
    }

    public void setAttributes(Map attributes) {
        this.attributes.clear();
        if (attributes != null) {
            this.attributes.putAll(attributes);
        }
    }

    public String getStringAttribute(String key) {
        return (String) getAttribute(key);
    }

    public void setStringAttribute(String key, String value) {
        setAttribute(key, value);
    }

    public Boolean getBooleanAttribute(String key) {
        return (Boolean) getAttribute(key);
    }

    public void setBooleanAttribute(String key, boolean value) {
        setAttribute(key, value);
    }

    public Byte getByteAttribute(String key) {
        return (Byte) getAttribute(key);
    }

    public void setByteAttribute(String key, byte value) {
        setAttribute(key, value);
    }

    public Short getShortAttribute(String key) {
        return (Short) getAttribute(key);
    }

    public void setShortAttribute(String key, short value) {
        setAttribute(key, value);
    }

    public Integer getIntAttribute(String key) {
        return (Integer) getAttribute(key);
    }

    public void setIntAttribute(String key, int value) {
        setAttribute(key, value);
    }

    public Long getLongAttribute(String key) {
        return (Long) getAttribute(key);
    }

    public void setLongAttribute(String key, long value) {
        setAttribute(key, value);
    }

    public Float getFloatAttribute(String key) {
        return (Float) getAttribute(key);
    }

    public void setFloatAttribute(String key, float value) {
        setAttribute(key, value);
    }

    public Double getDoubleAttribute(String key) {
        return (Double) getAttribute(key);
    }

    public void setDoubleAttribute(String key, double value) {
        setAttribute(key, value);
    }

    public void removeAttribute(String key) {
        attributes.remove(key);
    }

    /**
     * Gets immutable version of this configuration.
     *
     * @return immutable version of this configuration
     * @deprecated this method will be removed in 4.0; it is meant for internal usage only
     */
    public MemberAttributeConfig asReadOnly() {
        return new MemberAttributeConfigReadOnly(this);
    }

    private Object getAttribute(String key) {
        return attributes.get(key);
    }

    private void setAttribute(String key, Object value) {
        attributes.put(key, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy