1 package org.exoplatform.services.wsrp.consumer; 2 3 import org.exoplatform.services.wsrp.type.ClientData; 4 5 15 public interface WSRPBaseRequest { 16 21 public String getSessionID(); 22 23 28 public String getPortletInstanceKey(); 29 30 35 public String getNavigationalState(); 36 37 42 public String getWindowState(); 43 44 49 public String getMode(); 50 51 57 public ClientData getClientData(); 58 59 66 public String [] getLocales(); 67 68 76 public String [] getModes(); 77 78 86 public String [] getWindowStates(); 87 88 94 public String [] getMimeTypes(); 95 96 102 public String [] getCharacterEncodingSet(); 103 104 110 public boolean isModeSupported(String wsrpMode); 111 112 118 public boolean isWindowStateSupported(String wsrpWindowState); 119 120 125 public String getUserAuthentication(); 126 } 127 | Popular Tags |