Package org.xwiki.filter.instance.input
Class InstanceInputProperties
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<String,Object>
-
- org.xwiki.filter.instance.input.InstanceInputProperties
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,Object>
,org.xwiki.filter.FilterStreamProperties
,org.xwiki.properties.RawProperties
public class InstanceInputProperties extends HashMap<String,Object> implements org.xwiki.properties.RawProperties, org.xwiki.filter.FilterStreamProperties
The properties passed to the instance input wiki stream.The properties are also passed to implementations of
InstanceInputEventGenerator
.- Since:
- 6.2M1
- Version:
- $Id: c9170e1bcbee07dfba909eca484cde5997c2c696 $
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Constructor Summary
Constructors Constructor Description InstanceInputProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EntityReferenceSet
getEntities()
boolean
isVerbose()
void
set(String propertyName, Object value)
void
setEntities(EntityReferenceSet entities)
void
setVerbose(boolean verbose)
-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
-
-
-
Method Detail
-
getEntities
public EntityReferenceSet getEntities()
- Returns:
- The entities to generate events from
-
setEntities
public void setEntities(EntityReferenceSet entities)
- Parameters:
entities
- The entities to generate events from
-
isVerbose
public boolean isVerbose()
- Specified by:
isVerbose
in interfaceorg.xwiki.filter.FilterStreamProperties
-
setVerbose
public void setVerbose(boolean verbose)
- Specified by:
setVerbose
in interfaceorg.xwiki.filter.FilterStreamProperties
-
-