1
14
15 package com.liferay.portlet;
16
17 import com.liferay.portal.kernel.log.Log;
18 import com.liferay.portal.kernel.log.LogFactoryUtil;
19
20 import javax.portlet.ActionRequest;
21 import javax.portlet.PortletRequest;
22
23
28 public class ActionRequestImpl
29 extends ClientDataRequestImpl implements ActionRequest {
30
31 public String getLifecycle() {
32 return PortletRequest.ACTION_PHASE;
33 }
34
35 protected ActionRequestImpl() {
36 if (_log.isDebugEnabled()) {
37 _log.debug("Creating new instance " + hashCode());
38 }
39 }
40
41 protected void recycle() {
42 if (_log.isDebugEnabled()) {
43 _log.debug("Recycling instance " + hashCode());
44 }
45
46 super.recycle();
47 }
48
49 private static Log _log = LogFactoryUtil.getLog(ActionRequestImpl.class);
50
51 }