| Home >> All >> org >> apache >> cocoon >> [ environment Javadoc ] |
| | org.apache.cocoon.environment.commandline.* (7) | | org.apache.cocoon.environment.http.* (6) |
| | org.apache.cocoon.environment.wrapper.* (3) |
org.apache.cocoon.environment: Javadoc index of package org.apache.cocoon.environment.
Package Samples:
org.apache.cocoon.environment.http
org.apache.cocoon.environment.wrapper
org.apache.cocoon.environment.commandline
Classes:
HttpCookie: Creates a cookie, a small amount of information sent by a servlet to a Web browser, saved by the browser, and later sent back to the server. A cookie's value can uniquely identify a client, so cookies are commonly used for session management. A cookie has a name, a single value, and optional attributes such as a comment, path and domain qualifiers, a maximum age, and a version number. Some Web browsers have bugs in how they handle the optional attributes, so use them sparingly to improve the interoperability of your servlets. The servlet sends cookies to the browser by using the HttpResponse.addCookie(org.apache.cocoon.environment.Cookie) ...
Cookie: Creates a cookie, a small amount of information sent by a servlet to a Web browser, saved by the browser, and later sent back to the server. A cookie's value can uniquely identify a client, so cookies are commonly used for session management. A cookie has a name, a single value, and optional attributes such as a comment, path and domain qualifiers, a maximum age, and a version number. Some Web browsers have bugs in how they handle the optional attributes, so use them sparingly to improve the interoperability of your servlets. The servlet sends cookies to the browser by using the Response.addCookie(org.apache.cocoon.environment.Cookie) ...
Session: Provides a way to identify a user across more than one page request or visit to a Web site and to store information about that user. Cocoon uses this interface to create a session between a client and the "cocoon server". The session persists for a specified time period, across more than one connection or page request from the user. A session usually corresponds to one user, who may visit a site many times. The server can maintain a session in many ways such as using cookies or rewriting URLs. This interface allows Cocoon to View and manipulate information about a session, such as the session identifier, ...
HttpSession: Provides a way to identify a user across more than one page request or visit to a Web site and to store information about that user. Cocoon uses this interface to create a session between a client and the "cocoon server". The session persists for a specified time period, across more than one connection or page request from the user. A session usually corresponds to one user, who may visit a site many times. The server can maintain a session in many ways such as using cookies or rewriting URLs. This interface allows Cocoon to View and manipulate information about a session, such as the session identifier, ...
ObjectModelHelper: A set of constants and methods to access the content of the object model. The object model is a Map used to pass information about the calling environment to the sitemap and its components (matchers, actions, transformers, etc). This class provides accessors only for the objects in the object model that are common to every environment and which can thus be used safely. Some environments provide additional objects, but they are not described here and accessing them should be done in due cause since this ties the application to that particular environment.
WriteableSource: A Source that can be written to. It provides two methods that allow for SAX-based and byte-based output. Callers will use the most appropriate method for their use and it's up to the implementation to handle both sources. For example, an XML-based implementation can use a parser to convert bytes written to the OutputStream to SAX events, and a byte-based implementation (such as file), can use a serializer to convert SAX events to a byte stream.
Source: Description of a source. This interface provides a simple interface for accessing a source of data. The source of data is assumed to not change during the lifetime of the Source object. If you have a data source that can change its content and you want it to reflect in Cocoon, use a ModifiableSource object instead.
HttpResponse: Implements the javax.servlet.http.HttpServletResponse interface to provide HTTP-specific functionality in sending a response. For example, it has methods to access HTTP headers and cookies.
HttpRequest: Implements the javax.servlet.http.HttpServletRequest interface to provide request information for HTTP servlets.
ModifiableSource: Describes a Source object whose data content can change.
EnvironmentWrapper: This is a wrapper class for the Environment object. It has the same properties except that the object model contains a RequestWrapper object.
RequestParameters: This class is used by the RequestWrapper . It parses a query string and creates a parameter representation required for the Request object.
RequestWrapper: This is a wrapper class for the Request object. It has the same properties except that the url and the parameters are different.
CommandlineContext: Implements the org.apache.cocoon.environment.Context interface
HttpContext: Implements the org.apache.cocoon.environment.Context interface
ForwardRedirector: A Redirector that handles forward redirects, i.e. internal redirects using the "cocoon:" pseudo-protocol.
CommandLineResponse: Creates a specific servlet response simulation from command line usage.
CommandLineRequest: Creates a specific servlet request simulation from command line usage.
URLFactorySourceResolver: A SourceResolver based on a URLFactory .
Response: Defines an interface to provide client response information .
Context: Defines an interface to provide client context information .
SourceResolver: Base interface for resolving a source by system identifiers.
Request: Defines an interface to provide client request information .
AbstractCommandLineEnvironment: This environment is used to save the requested file to disk.
| Home | Contact Us | Privacy Policy | Terms of Service |