Added: portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventFilter.html URL: http://svn.apache.org/viewvc/portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventFilter.html?rev=1691468&view=auto ============================================================================== --- portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventFilter.html (added) +++ portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventFilter.html Fri Jul 17 00:43:22 2015 @@ -0,0 +1,297 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc (version 1.7.0_60) on Thu Jul 16 17:20:27 PDT 2015 --> +<meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> +<title>EventFilter (Java Portlet Specification V2.1.0 1.0 API)</title> +<meta name="date" content="2015-07-16"> +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="EventFilter (Java Portlet Specification V2.1.0 1.0 API)"; + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/EventFilter.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../index-all.html">Index</a></li> +<li><a href="../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../javax/portlet/filter/ActionResponseWrapper.html" title="class in javax.portlet.filter"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../javax/portlet/filter/EventRequestWrapper.html" title="class in javax.portlet.filter"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../index.html?javax/portlet/filter/EventFilter.html" target="_top">Frames</a></li> +<li><a href="EventFilter.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li>Constr | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li>Constr | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">javax.portlet.filter</div> +<h2 title="Interface EventFilter" class="title">Interface EventFilter</h2> +</div> +<div class="contentContainer"> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>All Superinterfaces:</dt> +<dd><a href="../../../javax/portlet/filter/PortletFilter.html" title="interface in javax.portlet.filter">PortletFilter</a></dd> +</dl> +<hr> +<br> +<pre>public interface <span class="strong">EventFilter</span> +extends <a href="../../../javax/portlet/filter/PortletFilter.html" title="interface in javax.portlet.filter">PortletFilter</a></pre> +<div class="block">The <code>EventFilter</code> is an object that performs filtering + tasks on either the event request to a portlet, or on the event response from + a portlet, or both. + <p> + Filters perform filtering in the <code>doFilter</code> method. Every Filter has + access to a <code>FilterConfig</code> object from which it can obtain + its initialization parameters, a reference to the PortletContext + which it can use, for example, to load resources needed for filtering tasks. + <p> + Filters are configured in the portlet deployment descriptor of a + portlet application.</div> +<dl><dt><span class="strong">Since:</span></dt> + <dd>2.0</dd></dl> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span>Methods</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventFilter.html#doFilter(javax.portlet.EventRequest,%20javax.portlet.EventResponse,%20javax.portlet.filter.FilterChain)">doFilter</a></strong>(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request, + <a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a> response, + <a href="../../../javax/portlet/filter/FilterChain.html" title="interface in javax.portlet.filter">FilterChain</a> chain)</code> +<div class="block">The <code>doFilter</code> method of the Filter is called by the + portlet container each time a event request/response pair is passed + through the chain due to a client request for a portlet method + at the end of the chain.</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_javax.portlet.filter.PortletFilter"> +<!-- --> +</a> +<h3>Methods inherited from interface javax.portlet.filter.<a href="../../../javax/portlet/filter/PortletFilter.html" title="interface in javax.portlet.filter">PortletFilter</a></h3> +<code><a href="../../../javax/portlet/filter/PortletFilter.html#destroy()">destroy</a>, <a href="../../../javax/portlet/filter/PortletFilter.html#init(javax.portlet.filter.FilterConfig)">init</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="doFilter(javax.portlet.EventRequest, javax.portlet.EventResponse, javax.portlet.filter.FilterChain)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>doFilter</h4> +<pre>void doFilter(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request, + <a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a> response, + <a href="../../../javax/portlet/filter/FilterChain.html" title="interface in javax.portlet.filter">FilterChain</a> chain) + throws <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a>, + <a href="../../../javax/portlet/PortletException.html" title="class in javax.portlet">PortletException</a></pre> +<div class="block">The <code>doFilter</code> method of the Filter is called by the + portlet container each time a event request/response pair is passed + through the chain due to a client request for a portlet method + at the end of the chain. + <p> + The <code>FilterChain</code> passed in to this method allows + the Filter to pass on the event request and response to the next + component in the chain. + <p> + The <code>doFilter</code> method of a filter will typically be implemented + following this or some subset of the following pattern: + <ul> + <li>The method examines the request information.</li> + <li>The method may wrap the request object passed in to + its doFilter method with a customized implementation + the request wrapper <code>ActionRequestWrapper</code> + in order to modify request data.</li> + <li>The method may wrap the response object passed in to its + <code>doFilter</code> method with a customized implementation + of the response wrapper <code>ActionResponseWrapper</code> + to modify response data.</li> + <li>The filter may invoke the next component in the filter chain. + The next component may be another filter, or if the filter + making the invocation is the last filter configured in the + deployment descriptor for this chain, the next component + is the target method of the portlet. The invocation of the + next component is effected by calling the <code>doFilter</code> + method on the <code>FilterChain</code> object, and passing in + the request and response with which it was called or passing + in wrapped versions it may have created. + The filter chain's implementation of the <code>doFilter</code> + method, provided by the portlet container, must locate the + next component in the filter chain and invoke its <code>doFilter</code> + method, passing in the appropriate request and response objects. + Alternatively, the filter chain can block the request by not + making the call to invoke the next component, leaving the filter + responsible for filling out the response object.</li> + <li>After invocation of the next filter in the chain, the filter + may examine the response data.</li> + <li>Alternatively, the filter may have thrown an exception to + indicate an error in processing. If the filter throws an + <code>UnavailableException</code> during its <code>doFilter</code> + processing, the portlet container must not attempt continued + processing down the filter chain. It may choose to retry the + whole chain at a later time if the exception is not marked permanent.</li> + <li>When the last filter in the chain has been invoked, the next + component accessed is the target method on the portlet at + the end of the chain.</li> + </ul></div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>request</code> - the current event request</dd><dd><code>response</code> - the current event response</dd><dd><code>chain</code> - the remaining filter chain</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - if an IO error occurred in the filter processing</dd> +<dd><code><a href="../../../javax/portlet/PortletException.html" title="class in javax.portlet">PortletException</a></code> - if a portlet exception occurred in the filter processing</dd></dl> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar_bottom"> +<!-- --> +</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/EventFilter.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../index-all.html">Index</a></li> +<li><a href="../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../javax/portlet/filter/ActionResponseWrapper.html" title="class in javax.portlet.filter"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../javax/portlet/filter/EventRequestWrapper.html" title="class in javax.portlet.filter"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../index.html?javax/portlet/filter/EventFilter.html" target="_top">Frames</a></li> +<li><a href="EventFilter.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li>Constr | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li>Constr | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2004–2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> +</body> +</html>
Added: portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventRequestWrapper.html URL: http://svn.apache.org/viewvc/portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventRequestWrapper.html?rev=1691468&view=auto ============================================================================== --- portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventRequestWrapper.html (added) +++ portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventRequestWrapper.html Fri Jul 17 00:43:22 2015 @@ -0,0 +1,399 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc (version 1.7.0_60) on Thu Jul 16 17:20:27 PDT 2015 --> +<meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> +<title>EventRequestWrapper (Java Portlet Specification V2.1.0 1.0 API)</title> +<meta name="date" content="2015-07-16"> +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="EventRequestWrapper (Java Portlet Specification V2.1.0 1.0 API)"; + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/EventRequestWrapper.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../index-all.html">Index</a></li> +<li><a href="../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../javax/portlet/filter/EventFilter.html" title="interface in javax.portlet.filter"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../javax/portlet/filter/EventResponseWrapper.html" title="class in javax.portlet.filter"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../index.html?javax/portlet/filter/EventRequestWrapper.html" target="_top">Frames</a></li> +<li><a href="EventRequestWrapper.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor_summary">Constr</a> | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor_detail">Constr</a> | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">javax.portlet.filter</div> +<h2 title="Class EventRequestWrapper" class="title">Class EventRequestWrapper</h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li><a href="../../../javax/portlet/filter/PortletRequestWrapper.html" title="class in javax.portlet.filter">javax.portlet.filter.PortletRequestWrapper</a></li> +<li> +<ul class="inheritance"> +<li>javax.portlet.filter.EventRequestWrapper</li> +</ul> +</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>All Implemented Interfaces:</dt> +<dd><a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a>, <a href="../../../javax/portlet/PortletRequest.html" title="interface in javax.portlet">PortletRequest</a></dd> +</dl> +<hr> +<br> +<pre>public class <span class="strong">EventRequestWrapper</span> +extends <a href="../../../javax/portlet/filter/PortletRequestWrapper.html" title="class in javax.portlet.filter">PortletRequestWrapper</a> +implements <a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a></pre> +<div class="block">The <code>EventRequestWrapper</code> provides a convenient + implementation of the <code>EventRequest</code> interface + that can be subclassed by developers wishing to adapt the request. + This class implements the Wrapper or Decorator pattern. + Methods default to calling through to the wrapped request object.</div> +<dl><dt><span class="strong">Since:</span></dt> + <dd>2.0</dd> +<dt><span class="strong">See Also:</span></dt><dd><a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet"><code>EventRequest</code></a></dd></dl> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ======== NESTED CLASS SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="nested_class_summary"> +<!-- --> +</a> +<h3>Nested Class Summary</h3> +<ul class="blockList"> +<li class="blockList"><a name="nested_classes_inherited_from_class_javax.portlet.PortletRequest"> +<!-- --> +</a> +<h3>Nested classes/interfaces inherited from interface javax.portlet.<a href="../../../javax/portlet/PortletRequest.html" title="interface in javax.portlet">PortletRequest</a></h3> +<code><a href="../../../javax/portlet/PortletRequest.P3PUserInfos.html" title="enum in javax.portlet">PortletRequest.P3PUserInfos</a></code></li> +</ul> +</li> +</ul> +<!-- =========== FIELD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="field_summary"> +<!-- --> +</a> +<h3>Field Summary</h3> +<ul class="blockList"> +<li class="blockList"><a name="fields_inherited_from_class_javax.portlet.PortletRequest"> +<!-- --> +</a> +<h3>Fields inherited from interface javax.portlet.<a href="../../../javax/portlet/PortletRequest.html" title="interface in javax.portlet">PortletRequest</a></h3> +<code><a href="../../../javax/portlet/PortletRequest.html#ACTION_PHASE">ACTION_PHASE</a>, <a href="../../../javax/portlet/PortletRequest.html#ACTION_SCOPE_ID">ACTION_SCOPE_ID</a>, <a href="../../../javax/portlet/PortletRequest.html#BASIC_AUTH">BASIC_AUTH</a>, <a href="../../../javax/portlet/PortletRequest.html#CCPP_PROFILE">CCPP_PROFILE</a>, <a href="../../../javax/portlet/PortletRequest.html#CLIENT_CERT_AUTH">CLIENT_CERT_AUTH</a>, <a href="../../../javax/portlet/PortletRequest.html#DIGEST_AUTH">DIGEST_AUTH</a>, <a href="../../../javax/portlet/PortletRequest.html#EVENT_PHASE">EVENT_PHASE</a>, <a href="../../../javax/portlet/PortletRequest.html#FORM_AUTH">FORM_AUTH</a>, <a href="../../../javax/portlet/PortletRequest.html#LIFECYCLE_PHASE">LIFECYCLE_PHASE</a>, <a href="../../../javax/portlet/PortletRequest.html#RENDER_HEADERS">RENDER_HEADERS</a>, <a href="../../../javax/portlet/PortletRequest.html#RENDER_MARKUP">RENDER_MARKUP</a>, <a href="../../../javax/portlet/PortletRequest.html#REN DER_PART">RENDER_PART</a>, <a href="../../../javax/portlet/PortletRequest.html#RENDER_PHASE">RENDER_PHASE</a>, <a href="../../../javax/portlet/PortletRequest.html#RESOURCE_PHASE">RESOURCE_PHASE</a>, <a href="../../../javax/portlet/PortletRequest.html#USER_INFO">USER_INFO</a></code></li> +</ul> +</li> +</ul> +<!-- ======== CONSTRUCTOR SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_summary"> +<!-- --> +</a> +<h3>Constructor Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> +<caption><span>Constructors</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Constructor and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../javax/portlet/filter/EventRequestWrapper.html#EventRequestWrapper(javax.portlet.EventRequest)">EventRequestWrapper</a></strong>(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request)</code> +<div class="block">Creates an <code>EventRequest</code> adaptor + wrapping the given request object.</div> +</td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span>Methods</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code><a href="../../../javax/portlet/Event.html" title="interface in javax.portlet">Event</a></code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventRequestWrapper.html#getEvent()">getEvent</a></strong>()</code> +<div class="block">The default behavior of this method is to call + <code>getEvent()</code> on the wrapped request object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventRequestWrapper.html#getMethod()">getMethod</a></strong>()</code> +<div class="block">The default behavior of this method is to call + <code>getMethod()</code> on the wrapped request object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code><a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a></code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventRequestWrapper.html#getRequest()">getRequest</a></strong>()</code> +<div class="block">Return the wrapped request object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventRequestWrapper.html#setRequest(javax.portlet.EventRequest)">setRequest</a></strong>(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request)</code> +<div class="block">Sets the request object being wrapped.</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_javax.portlet.filter.PortletRequestWrapper"> +<!-- --> +</a> +<h3>Methods inherited from class javax.portlet.filter.<a href="../../../javax/portlet/filter/PortletRequestWrapper.html" title="class in javax.portlet.filter">PortletRequestWrapper</a></h3> +<code><a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getAttribute(java.lang.String)">getAttribute</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getAttributeNames()">getAttributeNames</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getAuthType()">getAuthType</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getContextPath()">getContextPath</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getCookies()">getCookies</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getLocale()">getLocale</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getLocales()">getLocales</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getParameter(java.lang.String)">getParameter</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getParameterMap()">getParameterMap</a>, <a href="../../../javax/portlet/filter/PortletRequestWr apper.html#getParameterNames()">getParameterNames</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getParameterValues(java.lang.String)">getParameterValues</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPortalContext()">getPortalContext</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPortletMode()">getPortletMode</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPortletSession()">getPortletSession</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPortletSession(boolean)">getPortletSession</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPreferences()">getPreferences</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPrivateParameterMap()">getPrivateParameterMap</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getProperties(java.lang.String)">getProperties</a>, <a href="../../../javax/portlet/f ilter/PortletRequestWrapper.html#getProperty(java.lang.String)">getProperty</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPropertyNames()">getPropertyNames</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getPublicParameterMap()">getPublicParameterMap</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getRemoteUser()">getRemoteUser</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getRequestedSessionId()">getRequestedSessionId</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getResponseContentType()">getResponseContentType</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getResponseContentTypes()">getResponseContentTypes</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getScheme()">getScheme</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getServerName()">getServerName</a>, <a href="../../../javax/portlet/ filter/PortletRequestWrapper.html#getServerPort()">getServerPort</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getUserPrincipal()">getUserPrincipal</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getWindowID()">getWindowID</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getWindowState()">getWindowState</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#isPortletModeAllowed(javax.portlet.PortletMode)">isPortletModeAllowed</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#isRequestedSessionIdValid()">isRequestedSessionIdValid</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#isSecure()">isSecure</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#isUserInRole(java.lang.String)">isUserInRole</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#isWindowStateAllowed(javax.portlet.WindowState)">isWindowStateAllowed</a>, < a href="../../../javax/portlet/filter/PortletRequestWrapper.html#removeAttribute(java.lang.String)">removeAttribute</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#setAttribute(java.lang.String,%20java.lang.Object)">setAttribute</a>, <a href="../../../javax/portlet/filter/PortletRequestWrapper.html#setRequest(javax.portlet.PortletRequest)">setRequest</a></code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/jav ase/1.5.0/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_javax.portlet.PortletRequest"> +<!-- --> +</a> +<h3>Methods inherited from interface javax.portlet.<a href="../../../javax/portlet/PortletRequest.html" title="interface in javax.portlet">PortletRequest</a></h3> +<code><a href="../../../javax/portlet/PortletRequest.html#getAttribute(java.lang.String)">getAttribute</a>, <a href="../../../javax/portlet/PortletRequest.html#getAttributeNames()">getAttributeNames</a>, <a href="../../../javax/portlet/PortletRequest.html#getAuthType()">getAuthType</a>, <a href="../../../javax/portlet/PortletRequest.html#getContextPath()">getContextPath</a>, <a href="../../../javax/portlet/PortletRequest.html#getCookies()">getCookies</a>, <a href="../../../javax/portlet/PortletRequest.html#getLocale()">getLocale</a>, <a href="../../../javax/portlet/PortletRequest.html#getLocales()">getLocales</a>, <a href="../../../javax/portlet/PortletRequest.html#getParameter(java.lang.String)">getParameter</a>, <a href="../../../javax/portlet/PortletRequest.html#getParameterMap()">getParameterMap</a>, <a href="../../../javax/portlet/PortletRequest.html#getParameterNames()">getParameterNames</a>, <a href="../../../javax/portlet/PortletRequest.html#getParameterValues(java.lang.Stri ng)">getParameterValues</a>, <a href="../../../javax/portlet/PortletRequest.html#getPortalContext()">getPortalContext</a>, <a href="../../../javax/portlet/PortletRequest.html#getPortletMode()">getPortletMode</a>, <a href="../../../javax/portlet/PortletRequest.html#getPortletSession()">getPortletSession</a>, <a href="../../../javax/portlet/PortletRequest.html#getPortletSession(boolean)">getPortletSession</a>, <a href="../../../javax/portlet/PortletRequest.html#getPreferences()">getPreferences</a>, <a href="../../../javax/portlet/PortletRequest.html#getPrivateParameterMap()">getPrivateParameterMap</a>, <a href="../../../javax/portlet/PortletRequest.html#getProperties(java.lang.String)">getProperties</a>, <a href="../../../javax/portlet/PortletRequest.html#getProperty(java.lang.String)">getProperty</a>, <a href="../../../javax/portlet/PortletRequest.html#getPropertyNames()">getPropertyNames</a>, <a href="../../../javax/portlet/PortletRequest.html#getPublicParameterMap()">getPublicParam eterMap</a>, <a href="../../../javax/portlet/PortletRequest.html#getRemoteUser()">getRemoteUser</a>, <a href="../../../javax/portlet/PortletRequest.html#getRequestedSessionId()">getRequestedSessionId</a>, <a href="../../../javax/portlet/PortletRequest.html#getResponseContentType()">getResponseContentType</a>, <a href="../../../javax/portlet/PortletRequest.html#getResponseContentTypes()">getResponseContentTypes</a>, <a href="../../../javax/portlet/PortletRequest.html#getScheme()">getScheme</a>, <a href="../../../javax/portlet/PortletRequest.html#getServerName()">getServerName</a>, <a href="../../../javax/portlet/PortletRequest.html#getServerPort()">getServerPort</a>, <a href="../../../javax/portlet/PortletRequest.html#getUserPrincipal()">getUserPrincipal</a>, <a href="../../../javax/portlet/PortletRequest.html#getWindowID()">getWindowID</a>, <a href="../../../javax/portlet/PortletRequest.html#getWindowState()">getWindowState</a>, <a href="../../../javax/portlet/PortletRequest.html#is PortletModeAllowed(javax.portlet.PortletMode)">isPortletModeAllowed</a>, <a href="../../../javax/portlet/PortletRequest.html#isRequestedSessionIdValid()">isRequestedSessionIdValid</a>, <a href="../../../javax/portlet/PortletRequest.html#isSecure()">isSecure</a>, <a href="../../../javax/portlet/PortletRequest.html#isUserInRole(java.lang.String)">isUserInRole</a>, <a href="../../../javax/portlet/PortletRequest.html#isWindowStateAllowed(javax.portlet.WindowState)">isWindowStateAllowed</a>, <a href="../../../javax/portlet/PortletRequest.html#removeAttribute(java.lang.String)">removeAttribute</a>, <a href="../../../javax/portlet/PortletRequest.html#setAttribute(java.lang.String,%20java.lang.Object)">setAttribute</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ========= CONSTRUCTOR DETAIL ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_detail"> +<!-- --> +</a> +<h3>Constructor Detail</h3> +<a name="EventRequestWrapper(javax.portlet.EventRequest)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>EventRequestWrapper</h4> +<pre>public EventRequestWrapper(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request)</pre> +<div class="block">Creates an <code>EventRequest</code> adaptor + wrapping the given request object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>request</code> - the event request to wrap</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if the request is <code>null</code></dd></dl> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="getRequest()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getRequest</h4> +<pre>public <a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> getRequest()</pre> +<div class="block">Return the wrapped request object.</div> +<dl> +<dt><strong>Overrides:</strong></dt> +<dd><code><a href="../../../javax/portlet/filter/PortletRequestWrapper.html#getRequest()">getRequest</a></code> in class <code><a href="../../../javax/portlet/filter/PortletRequestWrapper.html" title="class in javax.portlet.filter">PortletRequestWrapper</a></code></dd> +<dt><span class="strong">Returns:</span></dt><dd>the wrapped request</dd></dl> +</li> +</ul> +<a name="setRequest(javax.portlet.EventRequest)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRequest</h4> +<pre>public void setRequest(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request)</pre> +<div class="block">Sets the request object being wrapped.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>request</code> - the request to set</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if the request is null.</dd></dl> +</li> +</ul> +<a name="getEvent()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getEvent</h4> +<pre>public <a href="../../../javax/portlet/Event.html" title="interface in javax.portlet">Event</a> getEvent()</pre> +<div class="block">The default behavior of this method is to call + <code>getEvent()</code> on the wrapped request object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/EventRequest.html#getEvent()">getEvent</a></code> in interface <code><a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a></code></dd> +<dt><span class="strong">Returns:</span></dt><dd>the event that triggered the current processEvent call.</dd></dl> +</li> +</ul> +<a name="getMethod()"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>getMethod</h4> +<pre>public <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> getMethod()</pre> +<div class="block">The default behavior of this method is to call + <code>getMethod()</code> on the wrapped request object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/EventRequest.html#getMethod()">getMethod</a></code> in interface <code><a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a></code></dd> +<dt><span class="strong">Returns:</span></dt><dd>a String specifying the name of the HTTP method with which + this request was made</dd></dl> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar_bottom"> +<!-- --> +</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/EventRequestWrapper.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../index-all.html">Index</a></li> +<li><a href="../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../javax/portlet/filter/EventFilter.html" title="interface in javax.portlet.filter"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../javax/portlet/filter/EventResponseWrapper.html" title="class in javax.portlet.filter"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../index.html?javax/portlet/filter/EventRequestWrapper.html" target="_top">Frames</a></li> +<li><a href="EventRequestWrapper.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor_summary">Constr</a> | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor_detail">Constr</a> | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2004–2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> +</body> +</html> Added: portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventResponseWrapper.html URL: http://svn.apache.org/viewvc/portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventResponseWrapper.html?rev=1691468&view=auto ============================================================================== --- portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventResponseWrapper.html (added) +++ portals/site-live/portlet-api/portlet-api-2.1.0/javax/portlet/filter/EventResponseWrapper.html Fri Jul 17 00:43:22 2015 @@ -0,0 +1,622 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<!-- NewPage --> +<html lang="en"> +<head> +<!-- Generated by javadoc (version 1.7.0_60) on Thu Jul 16 17:20:27 PDT 2015 --> +<meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> +<title>EventResponseWrapper (Java Portlet Specification V2.1.0 1.0 API)</title> +<meta name="date" content="2015-07-16"> +<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> +</head> +<body> +<script type="text/javascript"><!-- + if (location.href.indexOf('is-external=true') == -1) { + parent.document.title="EventResponseWrapper (Java Portlet Specification V2.1.0 1.0 API)"; + } +//--> +</script> +<noscript> +<div>JavaScript is disabled on your browser.</div> +</noscript> +<!-- ========= START OF TOP NAVBAR ======= --> +<div class="topNav"><a name="navbar_top"> +<!-- --> +</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/EventResponseWrapper.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../index-all.html">Index</a></li> +<li><a href="../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../javax/portlet/filter/EventRequestWrapper.html" title="class in javax.portlet.filter"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../javax/portlet/filter/FilterChain.html" title="interface in javax.portlet.filter"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../index.html?javax/portlet/filter/EventResponseWrapper.html" target="_top">Frames</a></li> +<li><a href="EventResponseWrapper.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_top"> +<li><a href="../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_top"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor_summary">Constr</a> | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor_detail">Constr</a> | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_top"> +<!-- --> +</a></div> +<!-- ========= END OF TOP NAVBAR ========= --> +<!-- ======== START OF CLASS DATA ======== --> +<div class="header"> +<div class="subTitle">javax.portlet.filter</div> +<h2 title="Class EventResponseWrapper" class="title">Class EventResponseWrapper</h2> +</div> +<div class="contentContainer"> +<ul class="inheritance"> +<li><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li> +<li> +<ul class="inheritance"> +<li><a href="../../../javax/portlet/filter/PortletResponseWrapper.html" title="class in javax.portlet.filter">javax.portlet.filter.PortletResponseWrapper</a></li> +<li> +<ul class="inheritance"> +<li>javax.portlet.filter.EventResponseWrapper</li> +</ul> +</li> +</ul> +</li> +</ul> +<div class="description"> +<ul class="blockList"> +<li class="blockList"> +<dl> +<dt>All Implemented Interfaces:</dt> +<dd><a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a>, <a href="../../../javax/portlet/PortletResponse.html" title="interface in javax.portlet">PortletResponse</a>, <a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></dd> +</dl> +<hr> +<br> +<pre>public class <span class="strong">EventResponseWrapper</span> +extends <a href="../../../javax/portlet/filter/PortletResponseWrapper.html" title="class in javax.portlet.filter">PortletResponseWrapper</a> +implements <a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a></pre> +<div class="block">The <code>EventResponseWrapper</code> provides a convenient + implementation of the <code>EventResponse</code> interface + that can be subclassed by developers wishing to adapt the response. + This class implements the Wrapper or Decorator pattern. + Methods default to calling through to the wrapped response object.</div> +<dl><dt><span class="strong">Since:</span></dt> + <dd>2.0</dd> +<dt><span class="strong">See Also:</span></dt><dd><a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet"><code>EventResponse</code></a></dd></dl> +</li> +</ul> +</div> +<div class="summary"> +<ul class="blockList"> +<li class="blockList"> +<!-- ======== CONSTRUCTOR SUMMARY ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_summary"> +<!-- --> +</a> +<h3>Constructor Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> +<caption><span>Constructors</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colOne" scope="col">Constructor and Description</th> +</tr> +<tr class="altColor"> +<td class="colOne"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#EventResponseWrapper(javax.portlet.EventResponse)">EventResponseWrapper</a></strong>(<a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a> response)</code> +<div class="block">Creates an <code>EventResponse</code> adaptor + wrapping the given response object.</div> +</td> +</tr> +</table> +</li> +</ul> +<!-- ========== METHOD SUMMARY =========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_summary"> +<!-- --> +</a> +<h3>Method Summary</h3> +<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> +<caption><span>Methods</span><span class="tabEnd"> </span></caption> +<tr> +<th class="colFirst" scope="col">Modifier and Type</th> +<th class="colLast" scope="col">Method and Description</th> +</tr> +<tr class="altColor"> +<td class="colFirst"><code><a href="../../../javax/portlet/PortletMode.html" title="class in javax.portlet">PortletMode</a></code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#getPortletMode()">getPortletMode</a></strong>()</code> +<div class="block">The default behavior of this method is to call + <code>getPortletMode()</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]></code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#getRenderParameterMap()">getRenderParameterMap</a></strong>()</code> +<div class="block">The default behavior of this method is to call + <code>getRenderParameterMap()</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code><a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a></code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#getResponse()">getResponse</a></strong>()</code> +<div class="block">Return the wrapped response object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code><a href="../../../javax/portlet/WindowState.html" title="class in javax.portlet">WindowState</a></code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#getWindowState()">getWindowState</a></strong>()</code> +<div class="block">The default behavior of this method is to call + <code>getWindowState()</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#removePublicRenderParameter(java.lang.String)">removePublicRenderParameter</a></strong>(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</code> +<div class="block">The default behavior of this method is to call + <code>removePublicRenderParameter()</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setEvent(javax.xml.namespace.QName,%20java.io.Serializable)">setEvent</a></strong>(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/javax/xml/namespace/QName.html?is-external=true" title="class or interface in javax.xml.namespace">QName</a> name, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a> value)</code> +<div class="block">The default behavior of this method is to call + <code>setEvent(name, value)</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setEvent(java.lang.String,%20java.io.Serializable)">setEvent</a></strong>(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a> value)</code> +<div class="block">The default behavior of this method is to call + <code>setEvent()</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setPortletMode(javax.portlet.PortletMode)">setPortletMode</a></strong>(<a href="../../../javax/portlet/PortletMode.html" title="class in javax.portlet">PortletMode</a> portletMode)</code> +<div class="block">The default behavior of this method is to call + <code>setPortletMode(portletMode)</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setRenderParameter(java.lang.String,%20java.lang.String)">setRenderParameter</a></strong>(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> value)</code> +<div class="block">The default behavior of this method is to call + <code>setRenderParameter(key, value)</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setRenderParameter(java.lang.String,%20java.lang.String[])">setRenderParameter</a></strong>(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] values)</code> +<div class="block">The default behavior of this method is to call + <code>setRenderParameter(key, value)</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setRenderParameters(javax.portlet.EventRequest)">setRenderParameters</a></strong>(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request)</code> +<div class="block">The default behavior of this method is to call + <code>setRenderParameters()</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setRenderParameters(java.util.Map)">setRenderParameters</a></strong>(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]> parameters)</code> +<div class="block">The default behavior of this method is to call + <code>setRenderParameters(parameters)</code> on the wrapped response object.</div> +</td> +</tr> +<tr class="altColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setResponse(javax.portlet.EventResponse)">setResponse</a></strong>(<a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a> response)</code> +<div class="block">Sets the response object being wrapped.</div> +</td> +</tr> +<tr class="rowColor"> +<td class="colFirst"><code>void</code></td> +<td class="colLast"><code><strong><a href="../../../javax/portlet/filter/EventResponseWrapper.html#setWindowState(javax.portlet.WindowState)">setWindowState</a></strong>(<a href="../../../javax/portlet/WindowState.html" title="class in javax.portlet">WindowState</a> windowState)</code> +<div class="block">The default behavior of this method is to call + <code>setWindowState(windowState)</code> on the wrapped response object.</div> +</td> +</tr> +</table> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_javax.portlet.filter.PortletResponseWrapper"> +<!-- --> +</a> +<h3>Methods inherited from class javax.portlet.filter.<a href="../../../javax/portlet/filter/PortletResponseWrapper.html" title="class in javax.portlet.filter">PortletResponseWrapper</a></h3> +<code><a href="../../../javax/portlet/filter/PortletResponseWrapper.html#addProperty(javax.servlet.http.Cookie)">addProperty</a>, <a href="../../../javax/portlet/filter/PortletResponseWrapper.html#addProperty(java.lang.String,%20org.w3c.dom.Element)">addProperty</a>, <a href="../../../javax/portlet/filter/PortletResponseWrapper.html#addProperty(java.lang.String,%20java.lang.String)">addProperty</a>, <a href="../../../javax/portlet/filter/PortletResponseWrapper.html#createElement(java.lang.String)">createElement</a>, <a href="../../../javax/portlet/filter/PortletResponseWrapper.html#encodeURL(java.lang.String)">encodeURL</a>, <a href="../../../javax/portlet/filter/PortletResponseWrapper.html#getNamespace()">getNamespace</a>, <a href="../../../javax/portlet/filter/PortletResponseWrapper.html#setProperty(java.lang.String,%20java.lang.String)">setProperty</a>, <a href="../../../javax/portlet/filter/PortletResponseWrapper.html#setResponse(javax.portlet.PortletResponse)">setResponse</a></ code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> +<!-- --> +</a> +<h3>Methods inherited from class java.lang.<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3> +<code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/jav ase/1.5.0/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang">toString</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li> +</ul> +<ul class="blockList"> +<li class="blockList"><a name="methods_inherited_from_class_javax.portlet.PortletResponse"> +<!-- --> +</a> +<h3>Methods inherited from interface javax.portlet.<a href="../../../javax/portlet/PortletResponse.html" title="interface in javax.portlet">PortletResponse</a></h3> +<code><a href="../../../javax/portlet/PortletResponse.html#addProperty(javax.servlet.http.Cookie)">addProperty</a>, <a href="../../../javax/portlet/PortletResponse.html#addProperty(java.lang.String,%20org.w3c.dom.Element)">addProperty</a>, <a href="../../../javax/portlet/PortletResponse.html#addProperty(java.lang.String,%20java.lang.String)">addProperty</a>, <a href="../../../javax/portlet/PortletResponse.html#createElement(java.lang.String)">createElement</a>, <a href="../../../javax/portlet/PortletResponse.html#encodeURL(java.lang.String)">encodeURL</a>, <a href="../../../javax/portlet/PortletResponse.html#getNamespace()">getNamespace</a>, <a href="../../../javax/portlet/PortletResponse.html#setProperty(java.lang.String,%20java.lang.String)">setProperty</a></code></li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +<div class="details"> +<ul class="blockList"> +<li class="blockList"> +<!-- ========= CONSTRUCTOR DETAIL ======== --> +<ul class="blockList"> +<li class="blockList"><a name="constructor_detail"> +<!-- --> +</a> +<h3>Constructor Detail</h3> +<a name="EventResponseWrapper(javax.portlet.EventResponse)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>EventResponseWrapper</h4> +<pre>public EventResponseWrapper(<a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a> response)</pre> +<div class="block">Creates an <code>EventResponse</code> adaptor + wrapping the given response object.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>response</code> - the event response to wrap</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if the response is <code>null</code></dd></dl> +</li> +</ul> +</li> +</ul> +<!-- ============ METHOD DETAIL ========== --> +<ul class="blockList"> +<li class="blockList"><a name="method_detail"> +<!-- --> +</a> +<h3>Method Detail</h3> +<a name="setEvent(javax.xml.namespace.QName, java.io.Serializable)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setEvent</h4> +<pre>public void setEvent(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/javax/xml/namespace/QName.html?is-external=true" title="class or interface in javax.xml.namespace">QName</a> name, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a> value)</pre> +<div class="block">The default behavior of this method is to call + <code>setEvent(name, value)</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#setEvent(javax.xml.namespace.QName,%20java.io.Serializable)">setEvent</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the event name to publish, must not be <code>null</code></dd><dd><code>value</code> - the value of this event, must have a valid JAXB binding and + be serializable, or <code>null</code>.</dd></dl> +</li> +</ul> +<a name="setPortletMode(javax.portlet.PortletMode)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setPortletMode</h4> +<pre>public void setPortletMode(<a href="../../../javax/portlet/PortletMode.html" title="class in javax.portlet">PortletMode</a> portletMode) + throws <a href="../../../javax/portlet/PortletModeException.html" title="class in javax.portlet">PortletModeException</a></pre> +<div class="block">The default behavior of this method is to call + <code>setPortletMode(portletMode)</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#setPortletMode(javax.portlet.PortletMode)">setPortletMode</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>portletMode</code> - the new portlet mode</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="../../../javax/portlet/PortletModeException.html" title="class in javax.portlet">PortletModeException</a></code> - if the portlet cannot switch to this portlet mode, because + the portlet or portal does not support it for this markup, + or the current user is not allowed to switch to this + portlet mode. To avoid this exception the portlet can + check the allowed portlet modes with + <code>Request.isPortletModeAllowed()</code>.</dd></dl> +</li> +</ul> +<a name="setRenderParameter(java.lang.String, java.lang.String)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRenderParameter</h4> +<pre>public void setRenderParameter(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> value)</pre> +<div class="block">The default behavior of this method is to call + <code>setRenderParameter(key, value)</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#setRenderParameter(java.lang.String,%20java.lang.String)">setRenderParameter</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>key</code> - key of the render parameter</dd><dd><code>value</code> - value of the render parameter</dd></dl> +</li> +</ul> +<a name="setRenderParameter(java.lang.String, java.lang.String[])"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRenderParameter</h4> +<pre>public void setRenderParameter(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> key, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] values)</pre> +<div class="block">The default behavior of this method is to call + <code>setRenderParameter(key, value)</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#setRenderParameter(java.lang.String,%20java.lang.String[])">setRenderParameter</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>key</code> - key of the render parameter</dd><dd><code>values</code> - values of the render parameter</dd></dl> +</li> +</ul> +<a name="setRenderParameters(java.util.Map)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRenderParameters</h4> +<pre>public void setRenderParameters(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]> parameters)</pre> +<div class="block">The default behavior of this method is to call + <code>setRenderParameters(parameters)</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#setRenderParameters(java.util.Map)">setRenderParameters</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>parameters</code> - Map containing parameter names for the render phase as keys + and parameter values as map values. The keys in the parameter + map must be of type String. The values in the parameter map + must be of type String array (<code>String[]</code>).</dd></dl> +</li> +</ul> +<a name="setWindowState(javax.portlet.WindowState)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setWindowState</h4> +<pre>public void setWindowState(<a href="../../../javax/portlet/WindowState.html" title="class in javax.portlet">WindowState</a> windowState) + throws <a href="../../../javax/portlet/WindowStateException.html" title="class in javax.portlet">WindowStateException</a></pre> +<div class="block">The default behavior of this method is to call + <code>setWindowState(windowState)</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#setWindowState(javax.portlet.WindowState)">setWindowState</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>windowState</code> - the new portlet window state</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="../../../javax/portlet/WindowStateException.html" title="class in javax.portlet">WindowStateException</a></code> - if the portlet cannot switch to the specified window + state. To avoid this exception the portlet can check the + allowed window states with + <code>Request.isWindowStateAllowed()</code>.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../javax/portlet/WindowState.html" title="class in javax.portlet"><code>WindowState</code></a></dd></dl> +</li> +</ul> +<a name="getResponse()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getResponse</h4> +<pre>public <a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a> getResponse()</pre> +<div class="block">Return the wrapped response object.</div> +<dl> +<dt><strong>Overrides:</strong></dt> +<dd><code><a href="../../../javax/portlet/filter/PortletResponseWrapper.html#getResponse()">getResponse</a></code> in class <code><a href="../../../javax/portlet/filter/PortletResponseWrapper.html" title="class in javax.portlet.filter">PortletResponseWrapper</a></code></dd> +<dt><span class="strong">Returns:</span></dt><dd>the wrapped response</dd></dl> +</li> +</ul> +<a name="setResponse(javax.portlet.EventResponse)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setResponse</h4> +<pre>public void setResponse(<a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a> response)</pre> +<div class="block">Sets the response object being wrapped.</div> +<dl><dt><span class="strong">Parameters:</span></dt><dd><code>response</code> - the response to set</dd> +<dt><span class="strong">Throws:</span></dt> +<dd><code><a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang">IllegalArgumentException</a></code> - if the response is null.</dd></dl> +</li> +</ul> +<a name="getPortletMode()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getPortletMode</h4> +<pre>public <a href="../../../javax/portlet/PortletMode.html" title="class in javax.portlet">PortletMode</a> getPortletMode()</pre> +<div class="block">The default behavior of this method is to call + <code>getPortletMode()</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#getPortletMode()">getPortletMode</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Returns:</span></dt><dd>the portlet mode, or <code>null</code> if none is set</dd></dl> +</li> +</ul> +<a name="getRenderParameterMap()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getRenderParameterMap</h4> +<pre>public <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a><<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]> getRenderParameterMap()</pre> +<div class="block">The default behavior of this method is to call + <code>getRenderParameterMap()</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#getRenderParameterMap()">getRenderParameterMap</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Returns:</span></dt><dd><code>Map</code> containing render parameter names as keys and + parameter values as map values, or an empty <code>Map</code> if + no parameters exist. The keys in the parameter map are of type + String. The values in the parameter map are of type String array (<code>String[]</code>).</dd></dl> +</li> +</ul> +<a name="getWindowState()"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>getWindowState</h4> +<pre>public <a href="../../../javax/portlet/WindowState.html" title="class in javax.portlet">WindowState</a> getWindowState()</pre> +<div class="block">The default behavior of this method is to call + <code>getWindowState()</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#getWindowState()">getWindowState</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Returns:</span></dt><dd>the window state, or <code>null</code> if none is set</dd></dl> +</li> +</ul> +<a name="setRenderParameters(javax.portlet.EventRequest)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setRenderParameters</h4> +<pre>public void setRenderParameters(<a href="../../../javax/portlet/EventRequest.html" title="interface in javax.portlet">EventRequest</a> request)</pre> +<div class="block">The default behavior of this method is to call + <code>setRenderParameters()</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/EventResponse.html#setRenderParameters(javax.portlet.EventRequest)">setRenderParameters</a></code> in interface <code><a href="../../../javax/portlet/EventResponse.html" title="interface in javax.portlet">EventResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>request</code> - The request the portlet has been provided + with by the portlet container for the current + <code>processEvent</code> call, must not be + <code>null</code>.</dd></dl> +</li> +</ul> +<a name="setEvent(java.lang.String, java.io.Serializable)"> +<!-- --> +</a> +<ul class="blockList"> +<li class="blockList"> +<h4>setEvent</h4> +<pre>public void setEvent(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name, + <a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a> value)</pre> +<div class="block">The default behavior of this method is to call + <code>setEvent()</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#setEvent(java.lang.String,%20java.io.Serializable)">setEvent</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the local part of the event name to publish, must not be <code>null</code></dd><dd><code>value</code> - the value of this event, must have a valid JAXB binding and + be serializable, or <code>null</code>.</dd></dl> +</li> +</ul> +<a name="removePublicRenderParameter(java.lang.String)"> +<!-- --> +</a> +<ul class="blockListLast"> +<li class="blockList"> +<h4>removePublicRenderParameter</h4> +<pre>public void removePublicRenderParameter(<a href="http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> name)</pre> +<div class="block">The default behavior of this method is to call + <code>removePublicRenderParameter()</code> on the wrapped response object.</div> +<dl> +<dt><strong>Specified by:</strong></dt> +<dd><code><a href="../../../javax/portlet/StateAwareResponse.html#removePublicRenderParameter(java.lang.String)">removePublicRenderParameter</a></code> in interface <code><a href="../../../javax/portlet/StateAwareResponse.html" title="interface in javax.portlet">StateAwareResponse</a></code></dd> +<dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - a <code>String</code> specifying + the name of the public render parameter to be removed</dd></dl> +</li> +</ul> +</li> +</ul> +</li> +</ul> +</div> +</div> +<!-- ========= END OF CLASS DATA ========= --> +<!-- ======= START OF BOTTOM NAVBAR ====== --> +<div class="bottomNav"><a name="navbar_bottom"> +<!-- --> +</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> +<!-- --> +</a> +<ul class="navList" title="Navigation"> +<li><a href="../../../overview-summary.html">Overview</a></li> +<li><a href="package-summary.html">Package</a></li> +<li class="navBarCell1Rev">Class</li> +<li><a href="class-use/EventResponseWrapper.html">Use</a></li> +<li><a href="package-tree.html">Tree</a></li> +<li><a href="../../../deprecated-list.html">Deprecated</a></li> +<li><a href="../../../index-all.html">Index</a></li> +<li><a href="../../../help-doc.html">Help</a></li> +</ul> +</div> +<div class="subNav"> +<ul class="navList"> +<li><a href="../../../javax/portlet/filter/EventRequestWrapper.html" title="class in javax.portlet.filter"><span class="strong">Prev Class</span></a></li> +<li><a href="../../../javax/portlet/filter/FilterChain.html" title="interface in javax.portlet.filter"><span class="strong">Next Class</span></a></li> +</ul> +<ul class="navList"> +<li><a href="../../../index.html?javax/portlet/filter/EventResponseWrapper.html" target="_top">Frames</a></li> +<li><a href="EventResponseWrapper.html" target="_top">No Frames</a></li> +</ul> +<ul class="navList" id="allclasses_navbar_bottom"> +<li><a href="../../../allclasses-noframe.html">All Classes</a></li> +</ul> +<div> +<script type="text/javascript"><!-- + allClassesLink = document.getElementById("allclasses_navbar_bottom"); + if(window==top) { + allClassesLink.style.display = "block"; + } + else { + allClassesLink.style.display = "none"; + } + //--> +</script> +</div> +<div> +<ul class="subNavList"> +<li>Summary: </li> +<li>Nested | </li> +<li>Field | </li> +<li><a href="#constructor_summary">Constr</a> | </li> +<li><a href="#method_summary">Method</a></li> +</ul> +<ul class="subNavList"> +<li>Detail: </li> +<li>Field | </li> +<li><a href="#constructor_detail">Constr</a> | </li> +<li><a href="#method_detail">Method</a></li> +</ul> +</div> +<a name="skip-navbar_bottom"> +<!-- --> +</a></div> +<!-- ======== END OF BOTTOM NAVBAR ======= --> +<p class="legalCopy"><small>Copyright © 2004–2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> +</body> +</html>
