blob: 3ac3f9f49e6b8059ee272784586f48879efce0fb [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.ambari.server.controller;
import java.util.Map;
/**
* This class encapsulates a configuration update request.
* The configuration properties are grouped at service level. It is assumed that
* different components of a service don't overload same property name.
*/
public class ConfigurationRequest {
private String clusterName;
private String type;
private String tag;
private Map<String, String> configs;
public ConfigurationRequest(String clusterName,
String type,
String tag,
Map<String, String> configs) {
super();
this.clusterName = clusterName;
this.configs = configs;
this.type = type;
this.tag = tag;
this.configs = configs;
}
/**
* @return the type
*/
public String getType() {
return type;
}
/**
* @param type the type to set
*/
public void setType(String type) {
this.type = type;
}
/**
* @return the versionTag
*/
public String getVersionTag() {
return tag;
}
/**
* @param versionTag the versionTag to set
*/
public void setVersionTag(String versionTag) {
this.tag = versionTag;
}
/**
* @return the configs
*/
public Map<String, String> getConfigs() {
return configs;
}
/**
* @param configs the configs to set
*/
public void setConfigs(Map<String, String> configs) {
this.configs = configs;
}
/**
* @return the clusterName
*/
public String getClusterName() {
return clusterName;
}
/**
* @param clusterName the clusterName to set
*/
public void setClusterName(String clusterName) {
this.clusterName = clusterName;
}
}