Interface IMockServiceInterfaceActionRequest
-
- All Superinterfaces:
ActionRequest
,ClientDataRequest
,IMockServiceInterfaceRequest
,IPageWebResourceRequest
,IServiceInterfaceActionRequest
,IServiceInterfaceRequest
,PortletRequest
- All Known Implementing Classes:
MockServiceInterfaceActionRequest
@StableMinor(version="14.0", sinceVersion="5.6") public interface IMockServiceInterfaceActionRequest extends IMockServiceInterfaceRequest, IServiceInterfaceActionRequest
Interface for aIServiceInterfaceActionRequest
mock object.- Since:
- 5.6.0
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface javax.portlet.PortletRequest
PortletRequest.P3PUserInfos
-
-
Field Summary
-
Fields inherited from interface javax.portlet.ActionRequest
ACTION_NAME
-
Fields inherited from interface lumis.portal.serviceinterface.IServiceInterfaceRequest
DEBUG_LEVEL_HIGH, DEBUG_LEVEL_LOW, DEBUG_LEVEL_MEDIUM, DEBUG_LEVEL_NONE
-
Fields inherited from interface javax.portlet.PortletRequest
ACTION_PHASE, ACTION_SCOPE_ID, BASIC_AUTH, CCPP_PROFILE, CLIENT_CERT_AUTH, DIGEST_AUTH, EVENT_PHASE, FORM_AUTH, LIFECYCLE_PHASE, RENDER_HEADERS, RENDER_MARKUP, RENDER_PART, RENDER_PHASE, RESOURCE_PHASE, USER_INFO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setContent(byte[] content)
Sets the request content that will be available inClientDataRequest.getPortletInputStream()
.void
setContentType(String contentType)
Sets the content type, returned byClientDataRequest.getContentType()
.void
setMethod(String method)
Sets the HTTP method, returned byClientDataRequest.getMethod()
.-
Methods inherited from interface javax.portlet.ClientDataRequest
getCharacterEncoding, getContentLength, getContentType, getMethod, getPortletInputStream, getReader, setCharacterEncoding
-
Methods inherited from interface lumis.lptf.portal.serviceinterface.IMockServiceInterfaceRequest
addFileParameter, addHeader, addProperty, setAuthType, setCallerServiceInterfaceInstanceId, setCallerServiceInterfaceMenuLevel, setContextPath, setCookies, setFileParameterMap, setHeaderMap, setLocales, setPageConfig, setParameter, setParameter, setParameterMap, setPortletMode, setPreview, setProperty, setRemoteUser, setRequestedSessionIdValid, setScheme, setSecure, setServerName, setServerPort, setServiceConfig, setServiceInstanceConfig, setServiceInstanceDebugLevel, setServiceInterfaceConfig, setServiceInterfaceInstanceConfig, setSessionConfig, setWindowState
-
Methods inherited from interface lumis.portal.url.IPageWebResourceRequest
getApplicationRequestedPath, getAttribute, getContextPath, getParameter, getParameterValues, getPortalMode, getScheme, getServerName, getServerPort, isPageCachedInFile, isSecure, removeAttribute, setAttribute
-
Methods inherited from interface lumis.portal.serviceinterface.IServiceInterfaceRequest
getAttributeNames, getBusinessContext, getCallerServiceInterfaceInstanceId, getCallerServiceInterfaceInstancePreferences, getCallerServiceInterfaceMenuLevel, getCookie, getCookies, getFileParameter, getHeader, getMode, getPageConfig, getPageWebResource, getParameterMap, getParameterNames, getPreferences, getRequestDispatcher, getServiceConfig, getServiceInstanceConfig, getServiceInstanceDebugLevel, getServiceInterfaceConfig, getServiceInterfaceInstanceConfig, getServiceInterfaceInstanceId, getSessionConfig, getWebsiteBaseURL, isPreview, setMode
-
Methods inherited from interface javax.portlet.PortletRequest
getAttribute, getAuthType, getContextPath, getLocale, getLocales, getParameter, getParameterValues, getPortalContext, getPortletMode, getPortletSession, getPortletSession, getPrivateParameterMap, getProperties, getProperty, getPropertyNames, getPublicParameterMap, getRemoteUser, getRequestedSessionId, getResponseContentType, getResponseContentTypes, getScheme, getServerName, getServerPort, getUserPrincipal, getWindowID, getWindowState, isPortletModeAllowed, isRequestedSessionIdValid, isSecure, isUserInRole, isWindowStateAllowed, removeAttribute, setAttribute
-
-
-
-
Method Detail
-
setContent
void setContent(byte[] content)
Sets the request content that will be available inClientDataRequest.getPortletInputStream()
.- Parameters:
content
- the content.- Since:
- 5.6.0
-
setContentType
void setContentType(String contentType)
Sets the content type, returned byClientDataRequest.getContentType()
.- Parameters:
contentType
- the content type.- Since:
- 5.6.0
-
setMethod
void setMethod(String method)
Sets the HTTP method, returned byClientDataRequest.getMethod()
.- Parameters:
method
- the method.- Since:
- 5.6.0
-
-