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

Alachisoft.NCache.Common.Configuration.ConfigurationRootAttribute Maven / Gradle / Ivy

package Alachisoft.NCache.Common.Configuration;

//C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to .NET attributes:
//[AttributeUsage(AttributeTargets.Class)]
public class ConfigurationRootAttribute extends ConfigurationAttributeBase {
    private String _rootSectionName;

    public ConfigurationRootAttribute(String sectionName) {
        super(false, false);
        _rootSectionName = sectionName;
    }

    public ConfigurationRootAttribute(String rootSectionName, boolean isRequired, boolean isCollection) {
        super(isRequired, isCollection);
        _rootSectionName = rootSectionName;
    }

    /**
     * Gets the attribute name.
     */
    public final String getRootSectionName() {
        return _rootSectionName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy