Package org.apache.catalina.startup
Class ContextConfig.JavaClassCacheEntry
- java.lang.Object
-
- org.apache.catalina.startup.ContextConfig.JavaClassCacheEntry
-
- Enclosing class:
- ContextConfig
protected static class ContextConfig.JavaClassCacheEntry extends java.lang.ObjectCache entry for a Java class used during annotation scanning.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String[]interfaceNamesThe names of the implemented interfaces.java.lang.StringsuperclassNameThe name of the superclass.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String[]getInterfaceNames()Returns the names of the implemented interfaces.java.util.Set<ServletContainerInitializer>getSciSet()Returns the set of ServletContainerInitializers interested in this class.java.lang.StringgetSuperclassName()Returns the name of the superclass.voidsetSciSet(java.util.Set<ServletContainerInitializer> sciSet)Sets the set of ServletContainerInitializers interested in this class.
-
-
-
Method Detail
-
getSuperclassName
public java.lang.String getSuperclassName()
Returns the name of the superclass.- Returns:
- the superclass name
-
getInterfaceNames
public java.lang.String[] getInterfaceNames()
Returns the names of the implemented interfaces.- Returns:
- the interface names
-
getSciSet
public java.util.Set<ServletContainerInitializer> getSciSet()
Returns the set of ServletContainerInitializers interested in this class.- Returns:
- the SCI set
-
setSciSet
public void setSciSet(java.util.Set<ServletContainerInitializer> sciSet)
Sets the set of ServletContainerInitializers interested in this class.- Parameters:
sciSet- the SCI set
-
-