blob: f8698218e324159d71f80ed37861b4dee1d26b5a [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.geode.admin.internal;
import org.apache.logging.log4j.Logger;
import org.apache.geode.admin.DistributedSystemConfig;
import org.apache.geode.internal.logging.LogService;
import org.apache.geode.internal.logging.log4j.LogMarker;
/**
* This is a disabled implementation of ManagedEntityController for bug #47909.
*
* The old ManagedEntityController was a concrete class which has been renamed to
* ManagedEntityControllerImpl. The build.xml now skips building ManagedEntityControllerImpl. If
* ManagedEntityControllerImpl is not found in the classpath then the code uses
* DisabledManagedEntityController as a place holder.
*
*/
class DisabledManagedEntityController implements ManagedEntityController {
private static final Logger logger = LogService.getLogger();
private static final String EXCEPTION_MESSAGE =
"Local and remote OS command invocations are disabled for the Admin API.";
DisabledManagedEntityController() {}
@Override
public void start(InternalManagedEntity entity) {
if (logger.isTraceEnabled(LogMarker.MANAGED_ENTITY_VERBOSE)) {
logger.trace(LogMarker.MANAGED_ENTITY_VERBOSE, "DisabledManagedEntityController#start {}",
EXCEPTION_MESSAGE);
}
throw new UnsupportedOperationException(EXCEPTION_MESSAGE);
}
@Override
public void stop(InternalManagedEntity entity) {
if (logger.isTraceEnabled(LogMarker.MANAGED_ENTITY_VERBOSE)) {
logger.trace(LogMarker.MANAGED_ENTITY_VERBOSE, "DisabledManagedEntityController#stop {}",
EXCEPTION_MESSAGE);
}
throw new UnsupportedOperationException(EXCEPTION_MESSAGE);
}
@Override
public boolean isRunning(InternalManagedEntity entity) {
if (logger.isTraceEnabled(LogMarker.MANAGED_ENTITY_VERBOSE)) {
logger.trace(LogMarker.MANAGED_ENTITY_VERBOSE, "DisabledManagedEntityController#isRunning {}",
EXCEPTION_MESSAGE);
}
throw new UnsupportedOperationException(EXCEPTION_MESSAGE);
}
@Override
public String getLog(DistributionLocatorImpl locator) {
if (logger.isTraceEnabled(LogMarker.MANAGED_ENTITY_VERBOSE)) {
logger.trace(LogMarker.MANAGED_ENTITY_VERBOSE, "DisabledManagedEntityController#getLog {}",
EXCEPTION_MESSAGE);
}
throw new UnsupportedOperationException(EXCEPTION_MESSAGE);
}
@Override
public String buildSSLArguments(DistributedSystemConfig config) {
if (logger.isTraceEnabled(LogMarker.MANAGED_ENTITY_VERBOSE)) {
logger.trace(LogMarker.MANAGED_ENTITY_VERBOSE,
"DisabledManagedEntityController#buildSSLArguments {}", EXCEPTION_MESSAGE);
}
throw new UnsupportedOperationException(EXCEPTION_MESSAGE);
}
@Override
public String getProductExecutable(InternalManagedEntity entity, String executable) {
if (logger.isTraceEnabled(LogMarker.MANAGED_ENTITY_VERBOSE)) {
logger.trace(LogMarker.MANAGED_ENTITY_VERBOSE,
"DisabledManagedEntityController#getProductExecutable {}", EXCEPTION_MESSAGE);
}
throw new UnsupportedOperationException(EXCEPTION_MESSAGE);
}
}