Alachisoft.NCache.Common.Configuration.DynamicConfigurationSectionAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
package Alachisoft.NCache.Common.Configuration;
//C# TO JAVA CONVERTER TODO TASK: Java annotations will not correspond to .NET attributes:
//[AttributeUsage(AttributeTargets.Property)]
public class DynamicConfigurationSectionAttribute extends ConfigurationAttributeBase {
private String _sectionName;
public DynamicConfigurationSectionAttribute(String sectionName) {
super(false, false);
_sectionName = sectionName;
}
public DynamicConfigurationSectionAttribute(String sectionName, boolean isRequired, boolean isCollection) {
super(isRequired, isCollection);
_sectionName = sectionName;
}
/**
* Gets the section name.
*/
public final String getSectionName() {
return _sectionName;
}
}