com.marklogic.appdeployer.command.CommandContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ml-app-deployer Show documentation
Show all versions of ml-app-deployer Show documentation
Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic
/*
* Copyright (c) 2023 MarkLogic Corporation
*
* 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.marklogic.appdeployer.command;
import com.marklogic.appdeployer.AppConfig;
import com.marklogic.mgmt.ManageClient;
import com.marklogic.mgmt.admin.AdminManager;
import com.marklogic.mgmt.api.configuration.Configuration;
import com.marklogic.mgmt.api.configuration.Configurations;
import java.util.HashMap;
import java.util.Map;
/**
* Defines the context within which a command executes, which includes:
*
*
* - An AppConfig object that defines configuration values for an application
* - A ManageClient for connecting to the Manage API
* - An AdminManager for performing operations against the Admin app server
* - A context map that commands are free to store anything they wish within
*
*/
public class CommandContext {
private AppConfig appConfig;
private ManageClient manageClient;
private AdminManager adminManager;
private Map contextMap;
private final static String COMBINED_CMA_REQUEST_KEY = "cma-combined-request";
public CommandContext(AppConfig appConfig, ManageClient manageClient, AdminManager adminManager) {
super();
this.appConfig = appConfig;
this.manageClient = manageClient;
this.adminManager = adminManager;
this.contextMap = new HashMap<>();
}
public void addCmaConfigurationToCombinedRequest(Configuration configuration) {
Configurations configs = getCombinedCmaRequest();
if (configs == null) {
contextMap.put(COMBINED_CMA_REQUEST_KEY, new Configurations(configuration));
} else {
configs.addConfig(configuration);
}
}
public Configurations getCombinedCmaRequest() {
return (Configurations) contextMap.get(COMBINED_CMA_REQUEST_KEY);
}
public void removeCombinedCmaRequest() {
contextMap.remove(COMBINED_CMA_REQUEST_KEY);
}
public AppConfig getAppConfig() {
return appConfig;
}
public ManageClient getManageClient() {
return manageClient;
}
public AdminManager getAdminManager() {
return adminManager;
}
public Map getContextMap() {
return contextMap;
}
public void setContextMap(Map contextMap) {
this.contextMap = contextMap;
}
}