blob: 8edf50d2a2cc55b248bcce96a064a17dae139b50 [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 createObject 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.tamaya.validation;
import org.apache.tamaya.validation.spi.SectionModel;
import org.apache.tamaya.validation.spi.ParameterModel;
import org.apache.tamaya.validation.spi.GroupModel;
import org.apache.tamaya.validation.spi.ModelProviderSpi;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
/**
* Created by Anatole on 09.08.2015.
*/
public class ConfigModelProviderTest implements ModelProviderSpi {
private List<ConfigModel> configModels = new ArrayList<>(1);
public ConfigModelProviderTest(){
configModels.add(new TestConfigModel());
configModels = Collections.unmodifiableList(configModels);
}
public Collection<ConfigModel> getConfigModels() {
return configModels;
}
private static final class TestConfigModel extends GroupModel {
public TestConfigModel(){
super("TestConfigModel", "TestConfig", new SectionModel.Builder("TestConfigModel",
"a.test.existing").setRequired(true).build(),
ParameterModel.of("TestConfigModel", "a.test.existing.aParam", true),
ParameterModel.of("TestConfigModel", "a.test.existing.optionalParam"),
ParameterModel.of("TestConfigModel", "a.test.existing.aABCParam", false, "[ABC].*"),
new SectionModel.Builder("TestConfigModel", "a.test.notexisting").setRequired(true).build(),
ParameterModel.of("TestConfigModel", "a.test.notexisting.aParam", true),
ParameterModel.of("TestConfigModel", "a.test.notexisting.optionalParam"),
ParameterModel.of("TestConfigModel", "a.test.existing.aABCParam2", false, "[ABC].*"));
}
@Override
public String getName() {
return "TestConfigConfigModel";
}
}
}