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

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

There is a newer version: 5.0-BETA-1
Show newest version
/*
 * Copyright (c) 2008-2021, 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.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.EnumSet;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;

/**
 * This class allows to control which parts of Hazelcast REST API will be enabled. There are 2 levels of control:
 * 
    *
  • overall REST access (enabled by default);
  • *
  • access to REST endpoint groups (see {@link RestEndpointGroup}).
  • *
*/ public class RestApiConfig { private boolean enabled; private final Set enabledGroups = Collections.synchronizedSet(EnumSet.noneOf(RestEndpointGroup.class)); public RestApiConfig() { for (RestEndpointGroup eg : RestEndpointGroup.values()) { if (eg.isEnabledByDefault()) { enabledGroups.add(eg); } } } /** * Enables all REST endpoint groups. */ public RestApiConfig enableAllGroups() { return enableGroups(RestEndpointGroup.values()); } /** * Enables provided REST endpoint groups. It doesn't replace already enabled groups. */ public RestApiConfig enableGroups(RestEndpointGroup... endpointGroups) { if (endpointGroups != null) { enabledGroups.addAll(Arrays.asList(endpointGroups)); } return this; } /** * Disables all REST endpoint groups. */ public RestApiConfig disableAllGroups() { enabledGroups.clear(); return this; } /** * Disables provided REST endpoint groups. */ public RestApiConfig disableGroups(RestEndpointGroup... endpointGroups) { if (endpointGroups != null) { enabledGroups.removeAll(Arrays.asList(endpointGroups)); } return this; } /** * Checks if REST API access is enabled. This flag controls access to all REST resources on a Hazelcast member. Once the * REST API is enabled you can control access to REST endpoints by enabling/disabling enpoint groups. * * @return {@code true} if enabled, {@code false} otherwise */ public boolean isEnabled() { return enabled; } /** * Return true if the REST API is enabled and at least one REST endpoint group is allowed. */ public boolean isEnabledAndNotEmpty() { return enabled && !enabledGroups.isEmpty(); } /** * Enables or disables the REST API on the member. */ public RestApiConfig setEnabled(boolean enabled) { this.enabled = enabled; return this; } /** * Returns a not-{@code null} set of enabled REST endpoint groups. */ public Set getEnabledGroups() { return new HashSet(enabledGroups); } /** * Checks if given REST endpoint group is enabled. It can return {@code true} even if the REST API itself is disabled. */ public boolean isGroupEnabled(RestEndpointGroup group) { return enabledGroups.contains(group); } public RestApiConfig setEnabledGroups(Collection groups) { enabledGroups.clear(); if (groups != null) { enabledGroups.addAll(groups); } return this; } @Override public String toString() { return "RestApiConfig{enabled=" + enabled + ", enabledGroups=" + enabledGroups + "}"; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } RestApiConfig that = (RestApiConfig) o; return enabled == that.enabled && Objects.equals(enabledGroups, that.enabledGroups); } @Override public int hashCode() { return Objects.hash(enabled, enabledGroups); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy