
org.switchyard.validate.config.model.v1.V1SchemaFilesModel Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2013 Red Hat Inc. and/or its affiliates and other contributors.
*
* 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 org.switchyard.validate.config.model.v1;
import java.util.ArrayList;
import java.util.List;
import javax.xml.namespace.QName;
import org.switchyard.config.Configuration;
import org.switchyard.config.model.BaseModel;
import org.switchyard.config.model.Descriptor;
import org.switchyard.validate.config.model.FileEntryModel;
import org.switchyard.validate.config.model.SchemaFilesModel;
/**
* A version 1 SchemaFilesModel.
*/
public class V1SchemaFilesModel extends BaseModel implements SchemaFilesModel {
private List _entries = new ArrayList();
/**
* Constructs a new V1SchemaCatalogsModel.
* @param namespace namespace
*/
public V1SchemaFilesModel(String namespace) {
super(new QName(namespace, SchemaFilesModel.SCHEMA_FILES));
}
/**
* Constructs a new V1SchemaFilesModel with the specified Configuration and Descriptor.
* @param config the Configuration
* @param desc the Descriptor
*/
public V1SchemaFilesModel(Configuration config, Descriptor desc) {
super(config, desc);
for (Configuration entryConfig : config.getChildrenStartsWith(FileEntryModel.ENTRY)) {
FileEntryModel entry = (FileEntryModel)readModel(entryConfig);
if (entry != null) {
_entries.add(entry);
}
}
setModelChildrenOrder(FileEntryModel.ENTRY);
}
/**
* {@inheritDoc}
*/
@Override
public List getEntries() {
return _entries;
}
/**
* {@inheritDoc}
*/
@Override
public SchemaFilesModel addEntry(FileEntryModel entry) {
addChildModel(entry);
_entries.add(entry);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy