Class PluginEntry
- java.lang.Object
-
- org.apache.logging.log4j.core.config.plugins.processor.PluginEntry
-
- All Implemented Interfaces:
Serializable
public class PluginEntry extends Object implements Serializable
Memento object for storing a plugin entry to a cache file.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PluginEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCategory()
String
getClassName()
String
getKey()
String
getName()
boolean
isDefer()
boolean
isPrintable()
void
setCategory(String category)
void
setClassName(String className)
void
setDefer(boolean defer)
void
setKey(String key)
void
setName(String name)
void
setPrintable(boolean printable)
String
toString()
-
-
-
Method Detail
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getClassName
public String getClassName()
-
setClassName
public void setClassName(String className)
-
getName
public String getName()
-
setName
public void setName(String name)
-
isPrintable
public boolean isPrintable()
-
setPrintable
public void setPrintable(boolean printable)
-
isDefer
public boolean isDefer()
-
setDefer
public void setDefer(boolean defer)
-
getCategory
public String getCategory()
-
setCategory
public void setCategory(String category)
-
-