blob: f18fd5e50b6f639597456e5eaccca73e54ec6e45 [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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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.hadoop.hdds.conf;
import java.util.concurrent.TimeUnit;
/**
* Example configuration to test the configuration injection.
*/
@ConfigGroup(prefix = "ozone.scm.client")
public class SimpleConfiguration {
private String clientAddress;
private String bindHost;
private boolean enabled;
private int port = 1234;
private long waitTime = 1;
@Config(key = "address", defaultValue = "localhost", description = "Just "
+ "for testing", tags = ConfigTag.MANAGEMENT)
public void setClientAddress(String clientAddress) {
this.clientAddress = clientAddress;
}
@Config(key = "bind.host", defaultValue = "0.0.0.0", description = "Just "
+ "for testing", tags = ConfigTag.MANAGEMENT)
public void setBindHost(String bindHost) {
this.bindHost = bindHost;
}
@Config(key = "enabled", defaultValue = "true", description = "Just for "
+ "testing", tags = ConfigTag.MANAGEMENT)
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
@Config(key = "port", defaultValue = "9878", description = "Just for "
+ "testing", tags = ConfigTag.MANAGEMENT)
public void setPort(int port) {
this.port = port;
}
@Config(key = "wait", type = ConfigType.TIME, timeUnit =
TimeUnit.SECONDS, defaultValue = "10m", description = "Just for "
+ "testing", tags = ConfigTag.MANAGEMENT)
public void setWaitTime(long waitTime) {
this.waitTime = waitTime;
}
public String getClientAddress() {
return clientAddress;
}
public String getBindHost() {
return bindHost;
}
public boolean isEnabled() {
return enabled;
}
public int getPort() {
return port;
}
public long getWaitTime() {
return waitTime;
}
}