The interface for the IPortalZoneHandler is illustrated below:
package com.splwg.base.web.portal;
import java.io.IOException;
import java.io.OutputStream;
import javax.servlet.ServletException;
public interface IPortalZoneHandler {
void handleRequest(IUserZone zone, OutputStream outStream) throws ServletException, IOException;
void setParameter(String parameterName, String value);
}
The interface for the IUserZone is illustrated below:
package com.splwg.base.web.portal;
import java.io.IOException;
import java.io.OutputStream;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
public interface IUserZone {
HttpServletRequest getRequest();
ServletContext getServletContext();
String getLanguage();
boolean isLanguageLTR();
String getSequenceId();
String getName();
void emitZoneLimitMessage(OutputStream out) throws IOException;
void emitGetAll(OutputStream out) throws IOException;
}
Copyright © 2019, Oracle and/or its affiliates. All rights reserved. Documentation build: 7.30.2019 15:44:44 [SDK_1564515884000]