Class ConfigurationPropertyDescriptor
- java.lang.Object
-
- org.nuxeo.runtime.services.config.ConfigurationPropertyDescriptor
-
- All Implemented Interfaces:
Descriptor
public class ConfigurationPropertyDescriptor extends Object implements Descriptor
Descriptor for JSF configuration contributions.- Since:
- 7.4
-
-
Field Summary
Fields Modifier and Type Field Description booleanlistprotected static Loglogprotected Stringnamebooleanoverrideprotected Stringvalue-
Fields inherited from interface org.nuxeo.runtime.model.Descriptor
UNIQUE_DESCRIPTOR_ID
-
-
Constructor Summary
Constructors Constructor Description ConfigurationPropertyDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigurationPropertyDescriptorclone()StringgetId()The descriptor id, descriptors with same id are merged.StringgetName()StringgetValue()booleanisList()booleanisOverride()Descriptormerge(Descriptor o)Returns a descriptor representingothermerged intothisStringtoString()-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.nuxeo.runtime.model.Descriptor
doesRemove
-
-
-
-
Constructor Detail
-
ConfigurationPropertyDescriptor
public ConfigurationPropertyDescriptor()
-
-
Method Detail
-
clone
public ConfigurationPropertyDescriptor clone()
-
getId
public String getId()
Description copied from interface:DescriptorThe descriptor id, descriptors with same id are merged.To forbid multiple descriptors use UNIQUE_DESCRIPTOR_ID.
To forbid merge use a unique value, non-overriden
toString()for exemple.- Specified by:
getIdin interfaceDescriptor- Since:
- 10.3
-
isList
public boolean isList()
- Since:
- 10.3
-
isOverride
public boolean isOverride()
- Since:
- 10.3
-
merge
public Descriptor merge(Descriptor o)
Description copied from interface:DescriptorReturns a descriptor representingothermerged intothisDefault implementation returns
other.- Specified by:
mergein interfaceDescriptor- Returns:
- the merged descriptor
- Since:
- 10.3
-
-