Class FactoryConfigurationDescription
- java.lang.Object
-
- org.apache.sling.feature.extension.apiregions.api.config.AttributeableEntity
-
- org.apache.sling.feature.extension.apiregions.api.config.DescribableEntity
-
- org.apache.sling.feature.extension.apiregions.api.config.ConfigurableEntity
-
- org.apache.sling.feature.extension.apiregions.api.config.FactoryConfigurationDescription
-
public class FactoryConfigurationDescription extends ConfigurableEntity
Description of an OSGi factory configuration This class is not thread safe.
-
-
Constructor Summary
Constructors Constructor Description FactoryConfigurationDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
Clear the object and set the defaultsprotected javax.json.JsonObjectBuilder
createJson()
Convert this object into JSONvoid
fromJSONObject(javax.json.JsonObject jsonObj)
Extract the metadata from the JSON object.List<String>
getInternalNames()
Get the internal factory configuration nameSet<Operation>
getOperations()
Get the operationsprotected void
setDefaults()
Apply the non-null default values.-
Methods inherited from class org.apache.sling.feature.extension.apiregions.api.config.ConfigurableEntity
getInternalPropertyNames, getMode, getPropertyDescriptions, getRegion, isAllowAdditionalProperties, setAllowAdditionalProperties, setMode, setRegion
-
Methods inherited from class org.apache.sling.feature.extension.apiregions.api.config.DescribableEntity
getDeprecated, getDescription, getEnforceOn, getSince, getTitle, setDeprecated, setDescription, setEnforceOn, setSince, setTitle
-
Methods inherited from class org.apache.sling.feature.extension.apiregions.api.config.AttributeableEntity
getAttributes, getBoolean, getInteger, getNumber, getString, getString, getStringArray, setString, setStringArray, toJSONObject
-
-
-
-
Method Detail
-
setDefaults
protected void setDefaults()
Description copied from class:AttributeableEntity
Apply the non-null default values.- Overrides:
setDefaults
in classConfigurableEntity
-
clear
public void clear()
Clear the object and set the defaults- Overrides:
clear
in classConfigurableEntity
-
fromJSONObject
public void fromJSONObject(javax.json.JsonObject jsonObj) throws IOException
Extract the metadata from the JSON object. This method first callsclear()
- Overrides:
fromJSONObject
in classConfigurableEntity
- Parameters:
jsonObj
- The JSON Object- Throws:
IOException
- If JSON parsing fails
-
getOperations
public Set<Operation> getOperations()
Get the operations- Returns:
- Mutable set of operations
-
getInternalNames
public List<String> getInternalNames()
Get the internal factory configuration name- Returns:
- Mutable list of internal names
-
createJson
protected javax.json.JsonObjectBuilder createJson() throws IOException
Convert this object into JSON- Overrides:
createJson
in classConfigurableEntity
- Returns:
- The json object builder
- Throws:
IOException
- If generating the JSON fails
-
-