Uses of Class
org.apache.shiro.config.Ini.Section
-
Packages that use Ini.Section Package Description org.apache.shiro.config Components that support configuring Shiro in any application.org.apache.shiro.web.config Web-specific implementation extensions to theorg.apache.shiro.config
components. -
-
Uses of Ini.Section in org.apache.shiro.config
Methods in org.apache.shiro.config that return Ini.Section Modifier and Type Method Description Ini.Section
Ini. addSection(String sectionName)
Ensures a section with the specified name exists, adding a new one if it does not yet exist.Ini.Section
Ini. get(Object key)
Ini.Section
Ini. getSection(String sectionName)
Returns theIni.Section
with the given name ornull
if no section with that name exists.Ini.Section
Ini. put(String key, Ini.Section value)
Ini.Section
Ini. remove(Object key)
Ini.Section
Ini. removeSection(String sectionName)
Removes the section with the specified name and returns it, ornull
if the section did not exist.Methods in org.apache.shiro.config that return types with arguments of type Ini.Section Modifier and Type Method Description Set<Map.Entry<String,Ini.Section>>
Ini. entrySet()
Collection<Ini.Section>
Ini. getSections()
Returns the sections managed by thisIni
instance or an empty collection if there are no sections.Collection<Ini.Section>
Ini. values()
Methods in org.apache.shiro.config with parameters of type Ini.Section Modifier and Type Method Description protected Map<String,?>
IniSecurityManagerFactory. createDefaults(Ini ini, Ini.Section mainSection)
Deprecated.Ini.Section
Ini. put(String key, Ini.Section value)
Method parameters in org.apache.shiro.config with type arguments of type Ini.Section Modifier and Type Method Description void
Ini. merge(Map<String,Ini.Section> m)
Merges the contents ofm
'sIni.Section
objects into self.void
Ini. putAll(Map<? extends String,? extends Ini.Section> m)
-
Uses of Ini.Section in org.apache.shiro.web.config
Methods in org.apache.shiro.web.config with parameters of type Ini.Section Modifier and Type Method Description protected Map<String,?>
WebIniSecurityManagerFactory. createDefaults(Ini ini, Ini.Section mainSection)
Deprecated.
-