1 16 package org.apache.cocoon.portal.wsrp.consumer; 17 18 import org.apache.wsrp4j.consumer.PortletSession; 19 import org.apache.wsrp4j.consumer.driver.GenericPortletWindowSessionImpl; 20 21 31 public class SimplePortletWindowSessionImpl 32 extends GenericPortletWindowSessionImpl 33 implements SimplePortletWindowSession { 34 35 37 private String windowState; 38 39 41 private String mode; 42 43 44 private String navState; 45 46 52 public SimplePortletWindowSessionImpl( 53 String windowID, 54 PortletSession pSession) { 55 super(windowID, pSession); 56 } 57 58 64 public String getWindowState() { 65 return windowState; 66 } 67 68 73 public String getMode() { 74 return mode; 75 } 76 77 83 public void setWindowState(String windowState) { 84 this.windowState = windowState; 85 } 86 87 92 public void setMode(String mode) { 93 this.mode = mode; 94 } 95 96 99 public String getNavigationalState() { 100 return navState; 101 } 102 103 106 public void setNavigationalState(String navState) { 107 this.navState = navState; 108 } 109 } 110 | Popular Tags |