Package com.orchestranetworks.ui
Interface UIRequestContext
-
- All Superinterfaces:
UIContext
@Deprecated public interface UIRequestContext extends UIContext
Deprecated.From 5.8.0, please use the new APIUICustomWidget
instead.Encapsulates an HTTP request so that a bean editor can provide the user input validation context.- See Also:
UIBeanEditor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description String
getOptionalRequestParameterValue(String aParameterName)
Deprecated.String[]
getOptionalRequestParameterValues(String aParameterName)
Deprecated.ValueContextForInputValidation
getValueContext()
Deprecated.Replaced byWidgetDisplayContext.getValueContext()
.ValueContextForInputValidation
getValueContext(Path aPath)
Deprecated.Replaced byWidgetDisplayContext.getValueContext(Path)
.-
Methods inherited from interface com.orchestranetworks.ui.UIContext
displayOccurrence, getHierarchyMember, getHierarchyNode, getLocale, getNode, getNode, getPathForListOccurrence, getPathForListOccurrence, getPathInAdaptation, getSession, getValue, getValue, getWebName, getWebNameFor, getWebNameForPath, getWebNameOfParent, isCreatingRecord, isDuplicatingRecord
-
-
-
-
Method Detail
-
getValueContext
@Deprecated ValueContextForInputValidation getValueContext()
Deprecated.Replaced byWidgetDisplayContext.getValueContext()
. Replaced byWidgetValidationContext.getValueContext()
.Returns the local validation context, relative to the node contained by this component.
-
getValueContext
@Deprecated ValueContextForInputValidation getValueContext(Path aPath)
Deprecated.Replaced byWidgetDisplayContext.getValueContext(Path)
. Replaced byWidgetValidationContext.getValueContext(Path)
.
-
getOptionalRequestParameterValue
@Deprecated String getOptionalRequestParameterValue(String aParameterName)
Deprecated.Returns the HTTP parameter value in the incoming request.
-
getOptionalRequestParameterValues
@Deprecated String[] getOptionalRequestParameterValues(String aParameterName)
Deprecated.Returns the HTTP parameter values in the incoming request.
-
-