Package com.adobe.cq.sightly
Class WCMResourceOptions
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<String,String>
-
- com.adobe.cq.sightly.WCMResourceOptions
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<String,String>
@ProviderType public class WCMResourceOptions extends HashMap<String,String>
TheWCMResourceOptionsclass is designed as a helper class for storing options used for including resources into Sightly scripts throughdata-sly-resource. This class is not meant to be extended.- 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>
-
-
Field Summary
Fields Modifier and Type Field Description static StringOPTION_CSS_CLASSstatic StringOPTION_DECORATIONstatic StringOPTION_DECORATION_TAG_NAMEstatic StringOPTION_WCMMODE
-
Constructor Summary
Constructors Constructor Description WCMResourceOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCssClassName()booleangetDecoration()StringgetDecorationTagName()WCMModegetWCMMode()voidsetCssClassName(String cssClassName)voidsetOptionDecoration(boolean decoration)voidsetOptionDecorationTagName(String decorationTagName)voidsetWcmMode(String wcmMode)-
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
-
-
-
-
Field Detail
-
OPTION_WCMMODE
public static final String OPTION_WCMMODE
- See Also:
- Constant Field Values
-
OPTION_DECORATION_TAG_NAME
public static final String OPTION_DECORATION_TAG_NAME
- See Also:
- Constant Field Values
-
OPTION_DECORATION
public static final String OPTION_DECORATION
- See Also:
- Constant Field Values
-
OPTION_CSS_CLASS
public static final String OPTION_CSS_CLASS
- See Also:
- Constant Field Values
-
-
Method Detail
-
getWCMMode
public WCMMode getWCMMode()
-
getDecorationTagName
public String getDecorationTagName()
-
getCssClassName
public String getCssClassName()
-
getDecoration
public boolean getDecoration()
-
setOptionDecoration
public void setOptionDecoration(boolean decoration)
-
setOptionDecorationTagName
public void setOptionDecorationTagName(String decorationTagName)
-
setCssClassName
public void setCssClassName(String cssClassName)
-
setWcmMode
public void setWcmMode(String wcmMode)
-
-