All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.karaf.features.internal.model.Content Maven / Gradle / Ivy

There is a newer version: 4.4.6
Show newest version
/*
 * 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.karaf.features.internal.model;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlTransient;

import org.apache.karaf.features.BundleInfo;
import org.apache.karaf.features.ConfigFileInfo;
import org.apache.karaf.features.ConfigInfo;

@XmlTransient
public class Content {
    
    @XmlElement(name = "config", namespace=org.apache.karaf.features.FeaturesNamespaces.URI_CURRENT)
    protected List config;
    @XmlElement(name = "configfile", namespace=org.apache.karaf.features.FeaturesNamespaces.URI_CURRENT)
    protected List configfile;
    @XmlElement(name = "feature", namespace=org.apache.karaf.features.FeaturesNamespaces.URI_CURRENT)
    protected List feature;
    @XmlElement(name = "bundle", namespace=org.apache.karaf.features.FeaturesNamespaces.URI_CURRENT)
    protected List bundle;

    /**
     * 

Gets the value of the config property.

* *

This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the config property.

* *

For example, to add a new item, do as follows:

*
     *    getConfig().add(newItem);
     * 
* *

Objects of the following type(s) are allowed in the list * {@link Config }

* * @return the list of config elements in a feature. */ public List getConfig() { if (config == null) { config = new ArrayList<>(); } return this.config; } /** *

Gets the value of the configfile property.

* *

This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the configfile property.

* *

For example, to add a new item, do as follows:

*
     *    getConfigfile().add(newItem);
     * 
* *

Objects of the following type(s) are allowed in the list * {@link ConfigFile }

* * @return the list of configfile elements in a feature. */ public List getConfigfile() { if (configfile == null) { configfile = new ArrayList<>(); } return this.configfile; } /** *

Gets the value of the feature property.

* *

This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the feature property.

* *

For example, to add a new item, do as follows:

*
     *    getFeatures().add(newItem);
     * 
* *

Objects of the following type(s) are allowed in the list * {@link Dependency }

* * @return the list of dependency features in a feature. */ public List getFeature() { if (feature == null) { feature = new ArrayList<>(); } return this.feature; } /** *

Gets the value of the bundle property.

* *

This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the bundle property.

* *

For example, to add a new item, do as follows:

*
     *    getBundle().add(newItem);
     * 
* *

Objects of the following type(s) are allowed in the list * {@link Bundle }

* * @return the list of bundle elements in a feature. */ public List getBundle() { if (bundle == null) { bundle = new ArrayList<>(); } return this.bundle; } public List getDependencies() { return Collections.unmodifiableList(getFeature()); } public List getBundles() { return Collections.unmodifiableList(getBundle()); } public List getConfigurations() { return Collections.unmodifiableList(getConfig()); } public List getConfigurationFiles() { return Collections.unmodifiableList(getConfigfile()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy