Package com.day.cq.wcm.foundation.forms
Interface FormsManager
-
public interface FormsManager
The forms manager keeps track of all available actions and constraints.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
FormsManager.ComponentDescription
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Iterator<FormsManager.ComponentDescription>
getActions()
Return the paths for all action resources.java.util.Iterator<FormsManager.ComponentDescription>
getConstraints()
Return the paths for all constraint resources.java.lang.String
getDialogPathForAction(java.lang.String resourceType)
Return the dialog path (resource path) for the form action.
-
-
-
Method Detail
-
getActions
java.util.Iterator<FormsManager.ComponentDescription> getActions()
Return the paths for all action resources.- Returns:
- An iterator for paths.
-
getConstraints
java.util.Iterator<FormsManager.ComponentDescription> getConstraints()
Return the paths for all constraint resources.- Returns:
- An iterator for paths.
-
getDialogPathForAction
java.lang.String getDialogPathForAction(java.lang.String resourceType)
Return the dialog path (resource path) for the form action.- Parameters:
resourceType
- The resource type of the form action- Returns:
- The full path or
null
.
-
-