org.karora.cooee.webcontainer.ContainerContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cooee Show documentation
Show all versions of cooee Show documentation
Cooee is a Web UI framework that closely follows the Swing API
without the hassle of Javascript. This means that developers
with little to no web application experience can immediately
begin coding web applications with their existing Swing API
knowledge. The code base represents a combined fork of the Echo2
source code and associated projects
The newest version!
/*
* This file is part of the Echo Web Application Framework (hereinafter "Echo").
* Copyright (C) 2002-2005 NextApp, Inc.
*
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*/
package org.karora.cooee.webcontainer;
import java.security.Principal;
import java.util.Map;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpSession;
import org.karora.cooee.app.TaskQueueHandle;
import org.karora.cooee.webrender.ClientConfiguration;
import org.karora.cooee.webrender.ClientProperties;
import org.karora.cooee.webrender.ServerDelayMessage;
import org.karora.cooee.webrender.Service;
/**
* Contextual information about the application container provided to an
* application instance. The ContainerContext
will be stored
* as a context property of an application's ApplicationInstance
,
* under the key constant CONTEXT_PROPERTY_NAME
.
*
* This interface should not be implemented outside of the core
* framework.
*/
public interface ContainerContext {
/**
* Property name by which a ContainerContext
may be retrieved
* from an ApplicationInstance
's context properties.
*
* @see org.karora.cooee.app.ApplicationInstance#getContextProperty(java.lang.String)
*/
public static final String CONTEXT_PROPERTY_NAME = ContainerContext.class.getName();
/**
* Returns the ClientProperties
describing the user's
* client web browser environment.
*
* @return the ClientProperties
*/
public ClientProperties getClientProperties();
/**
* Return any Cookie
s sent on the current HTTP request.
*
* @return the Cookie
s
*/
public Cookie[] getCookies();
/**
* Returns an immutable Map
containing the HTTP request
* parameters sent on the initial request to the application.
*
* @return the initial request parameter map
*/
public Map getInitialRequestParameterMap();
/**
* Returns the URI of the specified Service
.
*
* @param service the Service
* @return the URI
*/
public String getServiceUri(Service service);
/**
* Returns the URI of the Echo2 servlet.
*
* @return the servlet URI
*/
public String getServletUri();
/**
* Returns the HttpSession
in which the application is
* being stored.
*
* @return the HttpSession
*/
public HttpSession getSession();
/**
* Returns the authenticated user Principal
.
*
* @return the authenticated user Principal
*/
public Principal getUserPrincipal();
/**
* Determines if the authenticated user is in the specified logical "role",
* by querying the inbound servlet request.
*/
public boolean isUserInRole(String role);
/**
* Sets the ClientConfiguration
describing
* application-specific client configuration settings.
*
* @param clientConfiguration the new ClientConfiguration
*/
public void setClientConfiguration(ClientConfiguration clientConfiguration);
/**
* Sets the ServerDelayMessage
displayed during
* client/server-interactions.
*
* @param serverDelayMessage the new ServerDelayMessage
*/
public void setServerDelayMessage(ServerDelayMessage serverDelayMessage);
/**
* Sets the interval between asynchronous callbacks from the client to check
* for queued tasks for a given TaskQueue
. If multiple
* TaskQueue
s are active, the smallest specified interval should
* be used. The default interval is 500ms.
*
* @param taskQueue the TaskQueue
* @param ms the number of milliseconds between asynchronous client
* callbacks
*/
public void setTaskQueueCallbackInterval(TaskQueueHandle taskQueue, int ms);
}