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

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

There is a newer version: 5.3.3
Show newest version
package Alachisoft.NCache.Common.Configuration;

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

    public ConfigurationSectionAttribute(String sectionName) {
        super(false, false);
        _sectionName = sectionName;
    }

    public ConfigurationSectionAttribute(String sectionName, boolean isRequired, boolean isCollection) {
        super(isRequired, isCollection);
        _sectionName = sectionName;
    }

    /**
     * Gets the section name.
     */
    public final String getSectionName() {
        return _sectionName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy