Package org.alfresco.repo.template
Class BaseTemplateMap
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap
-
- org.alfresco.repo.template.BaseTemplateMap
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,java.util.Map
- Direct Known Subclasses:
BasePathResultsMap,BaseSearchResultsMap
public abstract class BaseTemplateMap extends java.util.HashMap implements java.lang.CloneableAn abstract Map class that can be used process the parent Node as part of the get() Map interface implementation.- Author:
- Kevin Roast
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected TemplateNodeparentprotected ServiceRegistryservices
-
Constructor Summary
Constructors Constructor Description BaseTemplateMap(TemplateNode parent, ServiceRegistry services)Constructor
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract java.lang.Objectget(java.lang.Object key)-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, getOrDefault, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Field Detail
-
parent
protected TemplateNode parent
-
services
protected ServiceRegistry services
-
-
Constructor Detail
-
BaseTemplateMap
public BaseTemplateMap(TemplateNode parent, ServiceRegistry services)
Constructor- Parameters:
parent- The parent TemplateNode to execute searches fromservices- The ServiceRegistry to use
-
-