com.plumtree.openfoundation.web
Interface IXPApplication

All Known Implementing Classes:
XPApplication

public interface IXPApplication

Interface modeling.


Method Summary
 java.lang.Object GetAttribute(java.lang.String name)
          Returns the servlet container attribute with the given name, or null if there is no attribute by that name.
 void RemoveAttribute(java.lang.String name)
          Removes the attribute with the given name from the servlet context.
 void SetAttribute(java.lang.String name, java.lang.Object _value)
          Binds an object to a given attribute name in this servlet context.
 

Method Detail

GetAttribute

java.lang.Object GetAttribute(java.lang.String name)
Returns the servlet container attribute with the given name, or null if there is no attribute by that name.

Parameters:
name - - a string specifying name of the attribute
Returns:
an object containing the value of the attribute, or null if no attributes exist with given name

SetAttribute

void SetAttribute(java.lang.String name,
                  java.lang.Object _value)
Binds an object to a given attribute name in this servlet context.

Parameters:
name - - a string specifying name of the attribute
_value - - an object representing the attribute to be bound

RemoveAttribute

void RemoveAttribute(java.lang.String name)
Removes the attribute with the given name from the servlet context.

Parameters:
name - - a String specifying the name of the attribute to be removed


Copyright © 2002, 2003, 2004 Plumtree Software Inc. All Rights Reserved.