Package com.contentful.java.cma.model
Class CMAUiExtensionParameters
- java.lang.Object
-
- com.contentful.java.cma.model.CMAUiExtensionParameters
-
public class CMAUiExtensionParameters extends java.lang.ObjectCMAUiExtensionParametersThis class will be used to represent a UI extension parameters.
-
-
Constructor Summary
Constructors Constructor Description CMAUiExtensionParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CMAUiExtensionParametersaddInstallationParameters()Add an installation parameter that are set when extensions are created/updated in a space.CMAUiExtensionParametersaddInstallationParameters(CMAUiExtensionParameter parameter)Add an installation parameter that are set when extensions are created/updated in a space.CMAUiExtensionParametersaddInstanceParameters(CMAUiExtensionParameter parameter)Add an instance parameter that are set when a space member with access to the Content Model assigns an extension to a field of a content type.java.util.List<CMAUiExtensionParameter>getInstallation()java.util.List<CMAUiExtensionParameter>getInstance()java.lang.StringtoString()
-
-
-
Method Detail
-
getInstallation
public java.util.List<CMAUiExtensionParameter> getInstallation()
- Returns:
- a list of installation parameters.
-
addInstallationParameters
public CMAUiExtensionParameters addInstallationParameters()
Add an installation parameter that are set when extensions are created/updated in a space.- Returns:
- this
CMAUiExtensionParametersinstance.
-
addInstallationParameters
public CMAUiExtensionParameters addInstallationParameters(CMAUiExtensionParameter parameter)
Add an installation parameter that are set when extensions are created/updated in a space.- Parameters:
parameter-- Returns:
- this
CMAUiExtensionParametersinstance.
-
getInstance
public java.util.List<CMAUiExtensionParameter> getInstance()
- Returns:
- a list of instance parameters.
-
addInstanceParameters
public CMAUiExtensionParameters addInstanceParameters(CMAUiExtensionParameter parameter)
Add an instance parameter that are set when a space member with access to the Content Model assigns an extension to a field of a content type.- Parameters:
parameter- .- Returns:
- this
CMAUiExtensionParametersinstance.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object- Returns:
- a human readable string, representing the object.
-
-