Package nl.gx.webmanager.springmvc
Interface FormBackingObject
-
- All Known Subinterfaces:
MediaItemArticleVersion
,MediaItemDownloadVersion
,MediaItemImageVersion
,MediaItemMultimediaVersion
,MediaItemPageVersion
,MediaItemVersion
- All Known Implementing Classes:
ExtensionSubTabFBO
,FormFragmentAdditionalFBO
,PanelBase
,PanelTabFBO
public interface FormBackingObject
This interface holds the methods that a FormBackingObject must implement.- Since:
- WebManager 9.0.8
- Author:
- ivol
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNestedPath()
The nested path to be used by Spring to bind the form backing object relative to the base object.String
getUUID()
UUID of the form backing object
-
-
-
Method Detail
-
getUUID
String getUUID()
UUID of the form backing object- Returns:
- The UUID of the form backing object
-
getNestedPath
String getNestedPath()
The nested path to be used by Spring to bind the form backing object relative to the base object. For example; for elements the nested path will be FBOMap[element.uuid] which is relative to the page version or media item version. For custom metadata in a media item it will be empty.- Returns:
- Nested path to this form backing object used for Spring binding
-
-