com.marklogic.appdeployer.cli.Options 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
The newest version!
/*
* 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.cli;
import ch.qos.logback.classic.Level;
import com.beust.jcommander.DynamicParameter;
import com.beust.jcommander.Parameter;
import java.util.HashMap;
import java.util.Map;
public class Options {
@Parameter(names = {"-f"}, description = "Path to properties file")
private String propertiesFilePath;
@Parameter(names = {"-l"}, description = "Log level, as defined by Logback")
private String logLevel = Level.INFO.levelStr;
@Parameter(names = {"-p"}, description = "Print a list of all supported properties")
private boolean printProperties;
@Parameter(names = {"-u"}, description = "Undo the given command (i.e. undeploy instead of deploy)")
private boolean undo;
@DynamicParameter(names = "-P", description = "Use this argument to include any property defined by the ml-gradle Property Reference; e.g. -PmlAppName=example")
private Map params = new HashMap<>();
public Map getParams() {
return params;
}
public void setParams(Map params) {
this.params = params;
}
public String getPropertiesFilePath() {
return propertiesFilePath;
}
public void setPropertiesFilePath(String propertiesFilePath) {
this.propertiesFilePath = propertiesFilePath;
}
public boolean isUndo() {
return undo;
}
public void setUndo(boolean undo) {
this.undo = undo;
}
public String getLogLevel() {
return logLevel;
}
public void setLogLevel(String logLevel) {
this.logLevel = logLevel;
}
public boolean isPrintProperties() {
return printProperties;
}
public void setPrintProperties(boolean printProperties) {
this.printProperties = printProperties;
}
}