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

com.mooltiverse.oss.nyx.entities.EnabledItemsMap Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
/*
 * Copyright 2020 Mooltiverse
 *
 * 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.mooltiverse.oss.nyx.entities;

import java.util.ArrayList;
import java.util.List;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

/**
 * A value holder that models a section containing a map of items that need to be enabled
 * by means of a list of names in order to be active.
 * 
 * @param  the type of the items managed by the map.
 */
class EnabledItemsMap {
    /**
     * The private list of enabled items.
     */
    private List enabled = null;

    /**
     * The private map of the items.
     */
    private Map items = null;

    /**
     * Default constructor. Constructs a new object with no items.
     */
    public EnabledItemsMap() {
        super();
        this.enabled = new ArrayList();
        this.items = new HashMap();
    }

    /**
     * Standard constructor. Constructs a new object with the given items.
     * 
     * @param enabled the list of names of enabled items
     * @param items the map of items
     * 
     * @throws NullPointerException if some argument is {@code null}
     */
    public EnabledItemsMap(List enabled, Map items) {
        super();
        Objects.requireNonNull(enabled);
        Objects.requireNonNull(items);
        this.enabled = enabled;
        this.items = items;
    }

    /**
     * Returns the list of enabled items.
     * 
     * @return the list of enabled items. It may be empty but not {@code null} if not configured.
     */
    public List getEnabled() {
        return enabled;
    }

    /**
     * Returns the map of the items configured in this section, where keys are item names
     * and values are actual item objects.
     * 
     * @return the map of the items configured in this section, where keys are item names
     * and values are actual item objects. It may be empty but not {@code null} if not configured.
     */
    public Map getItems() {
        return items;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy