Class FormSpecificationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.FormSpecificationType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class FormSpecificationType extends Object implements Serializable, Cloneable, Containerable
Specifies a form using several different methods, e.g. by specification of Java class, internal form OID, etc.Java class for FormSpecificationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="FormSpecificationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="formRef" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ObjectReferenceType" minOccurs="0"/> <element name="panelClass" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="panelUri" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_FORM_REF
static ItemName
F_PANEL_CLASS
static ItemName
F_PANEL_URI
static ItemName
F_TITLE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description FormSpecificationType()
FormSpecificationType(PrismContext prismContext)
-
Method Summary
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.prism.Containerable
cloneWithoutId, debugDump
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Constructor Detail
-
FormSpecificationType
public FormSpecificationType()
-
FormSpecificationType
public FormSpecificationType(PrismContext prismContext)
-
-
Method Detail
-
asPrismContainerValue
public PrismContainerValue asPrismContainerValue()
- Specified by:
asPrismContainerValue
in interfaceContainerable
-
setupContainerValue
public void setupContainerValue(PrismContainerValue containerValue)
Description copied from interface:Containerable
Setup value to the containerable representation. This is used to after (empty) containerable is created to initialize it with a correct prism container value. Note: This method DOES NOT change the container value parent.- Specified by:
setupContainerValue
in interfaceContainerable
-
end
public <X> X end()
-
getTitle
public String getTitle()
-
setTitle
public void setTitle(String value)
-
getFormRef
public ObjectReferenceType getFormRef()
-
setFormRef
public void setFormRef(ObjectReferenceType value)
-
getPanelClass
public String getPanelClass()
-
setPanelClass
public void setPanelClass(String value)
-
getPanelUri
public String getPanelUri()
-
setPanelUri
public void setPanelUri(String value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
title
public FormSpecificationType title(String value)
-
formRef
public FormSpecificationType formRef(ObjectReferenceType value)
-
formRef
public FormSpecificationType formRef(String oid, QName type)
-
formRef
public FormSpecificationType formRef(String oid, QName type, QName relation)
-
beginFormRef
public ObjectReferenceType beginFormRef()
-
panelClass
public FormSpecificationType panelClass(String value)
-
panelUri
public FormSpecificationType panelUri(String value)
-
id
public FormSpecificationType id(Long value)
-
clone
public FormSpecificationType clone()
-
-