Class AbstractNegotiator
- java.lang.Object
-
- org.nuxeo.theme.styling.negotiation.AbstractNegotiator
-
- All Implemented Interfaces:
Negotiator
public abstract class AbstractNegotiator extends Object implements Negotiator
- Since:
- 7.4
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,String>
properties
-
Constructor Summary
Constructors Constructor Description AbstractNegotiator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getProperties()
String
getProperty(String name)
String
getProperty(String name, String defaultValue)
void
setProperties(Map<String,String> properties)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.nuxeo.theme.styling.negotiation.Negotiator
getResult
-
-
-
-
Method Detail
-
getProperties
public Map<String,String> getProperties()
- Specified by:
getProperties
in interfaceNegotiator
-
setProperties
public void setProperties(Map<String,String> properties)
- Specified by:
setProperties
in interfaceNegotiator
-
getProperty
public String getProperty(String name)
- Specified by:
getProperty
in interfaceNegotiator
-
getProperty
public String getProperty(String name, String defaultValue)
- Specified by:
getProperty
in interfaceNegotiator
-
-