blob: c8f1e3eb4e979eb98ef9bfbbff0f196245a2c8ac [file] [log] [blame]
package org.apache.archiva.redback.components.registry;
/*
* 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.
*/
import java.util.List;
import java.util.Map;
import java.util.Properties;
/**
* Test component.
*/
public class DefaultComponent
implements Component
{
private String key;
private Properties properties;
private Map map;
private List list;
private String configKey;
private Properties configProperties;
private Map configMap;
private List configList;
private Properties mergeProperties;
private int number;
private int configNumber;
private Nested nested;
private Nested configNested;
private List mergeList;
public List getMergeList()
{
return mergeList;
}
public Nested getConfigNested()
{
return configNested;
}
public Nested getNested()
{
return nested;
}
public int getNumber()
{
return number;
}
public int getConfigNumber()
{
return configNumber;
}
public String getConfigKey()
{
return configKey;
}
public Properties getConfigProperties()
{
return configProperties;
}
public String getKey()
{
return key;
}
public Properties getProperties()
{
return properties;
}
public Map getMap()
{
return map;
}
public List getList()
{
return list;
}
public Map getConfigMap()
{
return configMap;
}
public List getConfigList()
{
return configList;
}
public Properties getMergeProperties()
{
return mergeProperties;
}
}