Home >> All >> org >> apache |
Page 1 2 3 4 5
| org.apache.ajp.* (22) | | org.apache.axis.* (704) | | org.apache.batik.* (1414) | | org.apache.bcel.* (335) |
| org.apache.bsf.* (125) | | org.apache.cactus.* (270) | | org.apache.catalina.* (443) | | org.apache.cocoon.* (1221) |
| org.apache.commons.* (3684) | | org.apache.coyote.* (59) |
Package Samples:
org.apache.commons.httpclient.methods.multipart: Classes implementing org.apache.commons.httpclient.HttpMethod for the base HTTP methods.
org.apache.commons.beanutils: The Bean Introspection Utilities component of the Jakarta Commons subproject offers low-level utility classes that assist in getting and setting property values on Java classes that follow the naming design patterns outlined in the JavaBeans Specification, as well as mechanisms for dynamically defining and accessing bean properties.
org.apache.catalina.ant.jmx: This package contains a set of Task implementations for Ant (version 1.6.x or later) that can be used to interact with the Manager application to deploy, undeploy, list, reload, start and stop web applications from a running instance of Tomcat.
org.apache.bcel.verifier: This package contains basic classes for the Byte Code Engineering Library and constants defined by the JVM specification .
org.apache.commons.modeler.ant: The Modeler component of the Jakarta Commons subproject offers convenient support for configuring and instantiating Model MBeans (management beans), as described in the JMX Specification.
org.apache.catalina.cluster.util: This package contains code for Clustering, the base class of a Cluster is org.apache.catalina.Cluster implementations of this class is done when implementing a new Cluster protocol
org.apache.commons.chain.web.faces: Basis for specialized Context implementations suitable for use in web applications, and generic Command implementations useful across web application environments.
org.apache.commons.chain.web.servlet: Basis for specialized Context implementations suitable for use in web applications, and generic Command implementations useful across web application environments.
org.apache.commons.beanutils.locale.converters: Standard implementations of the locale-aware LocaleConverter interface that are pre-registered with locale-aware LocaleConvertUtils at startup time.
org.apache.batik.svggen.font: Provides an API on top of the org.apache.batik.ext.awt.g2d.AbstractGraphics2D to translate Java 2D primitives into the SVG format.
org.apache.commons.lang.time: Provides highly reusable static utility methods, chiefly concerned with adding value to java.lang and other standard core classes.
org.apache.commons.lang.exception: Provides highly reusable static utility methods, chiefly concerned with adding value to java.lang and other standard core classes.
org.apache.commons.lang.builder: Provides highly reusable static utility methods, chiefly concerned with adding value to java.lang and other standard core classes.
org.apache.cactus.integration.ant.deployment.webapp: Contains classes that support deployment aspects like parsing deployment descriptors and extracting resources from deployment archives.
org.apache.commons.beanutils.converters: Standard implementations of the Converter interface that are pre-registered with ConvertUtils at startup time.
org.apache.commons.collections.primitives.adapters.io: Adapters for converting between the primitive and object based versions of the collections framework.
org.apache.cactus.spi.client.connector: Contains Cactus client-side SPI classes required to implement new protocols other than the Cactus-implemented ones.
org.apache.commons.digester.rss: Example usage of Digester to parse XML documents compatible with the Rich Site Summary format used by many newsfeeds.
org.apache.cactus.integration.ant.container.weblogic: Contains classes and interfaces that constitute the support for container startup and shutdown in the Ant integration.
org.apache.cactus.server.runner: Contains the Cactus redirectors and the Cactus wrappers around all Servlet, Filter and JSP implicit objects.
Classes:
RegularExpression: A regular expression matching engine using Non-deterministic Finite Automaton (NFA). This engine does not conform to the POSIX regular expression. How to use A. Standard way RegularExpression re = new RegularExpression( regex ); if (re.matches(text)) { ... } B. Capturing groups RegularExpression re = new RegularExpression( regex ); Match match = new Match(); if (re.matches(text, match)) { ... // You can refer captured texts with methods of the Match class. } Case-insensitive matching RegularExpression re = new RegularExpression( regex , "i"); if (re.matches(text) >= 0) { ...} Options You can specify ...
RegularExpression: A regular expression matching engine using Non-deterministic Finite Automaton (NFA). This engine does not conform to the POSIX regular expression. How to use A. Standard way RegularExpression re = new RegularExpression( regex ); if (re.matches(text)) { ... } B. Capturing groups RegularExpression re = new RegularExpression( regex ); Match match = new Match(); if (re.matches(text, match)) { ... // You can refer captured texts with methods of the Match class. } Case-insensitive matching RegularExpression re = new RegularExpression( regex , "i"); if (re.matches(text) >= 0) { ...} Options You can specify ...
RegularExpression: A regular expression matching engine using Non-deterministic Finite Automaton (NFA). This engine does not conform to the POSIX regular expression. How to use A. Standard way RegularExpression re = new RegularExpression( regex ); if (re.matches(text)) { ... } B. Capturing groups RegularExpression re = new RegularExpression( regex ); Match match = new Match(); if (re.matches(text, match)) { ... // You can refer captured texts with methods of the Match class. } Case-insensitive matching RegularExpression re = new RegularExpression( regex , "i"); if (re.matches(text) >= 0) { ...} Options You can specify ...
ResourceAdapter: The resource adapter is the clearing house for managing connections, transactions, and XAResources in a JDBC based resource manager living in the distributed transaction processing environment. There is one instance of ResourceAdapter per Resource Manager (database). The ResourceAdapter is responsible for keeping track of all run time global transactions and their state. The resource adapter only knows of run time global transactions, i.e., it does not know of in-doubt global transactions re-created by recovery. The following is an overall design of the JTA implementation in cloudscape, most of ...
DOMConfiguration: The DOMConfiguration interface represents the configuration of a document and maintains a table of recognized parameters. Using the configuration, it is possible to change Document.normalizeDocument() behavior, such as replacing the CDATASection nodes with Text nodes or specifying the type of the schema that must be used when the validation of the Document is requested. DOMConfiguration objects are also used in [ DOM Level 3 Load and Save ] in the DOMParser and DOMSerializer interfaces. The parameter names used by the DOMConfiguration object are defined throughout the DOM Level 3 specifications. ...
DependencyManager: Dependency Manager Interface The dependency manager tracks needs that dependents have of providers. This is a general purpose interface interface which is associated with a DataDictinary object; infact the dependencymanager is really the datadictionary keeping track of dependcies between objects that it handles (descriptors) as well as prepared statements. The primary example of this is a prepared statement's needs of schema objects such as tables. Dependencies are used so that we can determine when we need to recompile a statement; compiled statements depend on schema objects like tables and constraints, ...
PatternLayout: A flexible layout configurable with pattern string. The goal of this class is to format 55 a org.apache.log4j.spi.LoggingEvent and return the results as a String. The results depend on the conversion pattern . The conversion pattern is closely related to the conversion pattern of the printf function in C. A conversion pattern is composed of literal text and format control expressions called conversion specifiers . You are free to insert any literal text within the conversion pattern. Each conversion specifier starts with a percent sign (%) and is followed by optional format modifiers and a conversion ...
Monitor: Services A service is a collection of modules that combine to provide the full functionality defined by the service. A service is defined by three pieces of information: A fully qualified java class name that identifies the functionality or API that the service must provide. Typically this class represents a java interface. This class name is termed the factory interface . The identifier of the service. Services are identified by a String, this may be hard-coded, come from a UUID or any other source. An optional java.util.Properties set. The running functionality of the service is provided by a ...
JXPathContext: JXPathContext provides APIs for the traversal of graphs of JavaBeans using the XPath syntax. Using JXPathContext, you can read and write properties of JavaBeans, arrays, collections and maps. JXPathContext uses JavaBeans introspection to enumerate and access JavaBeans properties. JXPathContext allows alternative implementations. This is why instead of allocating JXPathContext directly, you should call a static newContext method. This method will utilize the JXPathContextFactory API to locate a suitable implementation of JXPath. Bundled with JXPath comes a default implementation called Reference ...
TempTableInfo: The temp tables will have following data structure TableDescriptor Declared in savepoint level Dropped in savepoint level Modified in savepoint level The actual logic LanguageConnectionContext will keep the "current savepoint level". At any point in time, this is the total number of savepoints defined for a transaction. At the start of any new transaction, the "current savepoint level" will be set to 0. Everytime a new user defined savepoint is set, store returns the total number of savepoints for the connection at that point. For eg, in a new transaction, "current savepoint level' will be 0. When ...
RE: RE is an efficient, lightweight regular expression evaluator/matcher class. Regular expressions are pattern descriptions which enable sophisticated matching of strings. In addition to being able to match a string against a pattern, you can also extract parts of the match. This is especially useful in text parsing! Details on the syntax of regular expression patterns are given below. To compile a regular expression (RE), you can simply construct an RE matcher object from the string specification of the pattern, like this: RE r = new RE("a*b"); Once you have done this, you can call either of the ...
MIME2Java: MIME2Java is a convenience class which handles conversions between MIME charset names and Java encoding names. The supported XML encodings are the intersection of XML-supported code sets and those supported in JDK 1.1. MIME charset names are used on xmlEncoding parameters to methods such as TXDocument#setEncoding and DTD#setEncoding . Java encoding names are used on encoding parameters to methods such as TXDocument#printWithFormat and DTD#printExternal . Common Name Use this name in XML files Name Type Xerces converts to this Java Encoder Name 8 bit Unicode UTF-8 IANA UTF8 ISO Latin 1 ISO-8859-1 ...
MIME2Java: MIME2Java is a convenience class which handles conversions between MIME charset names and Java encoding names. The supported XML encodings are the intersection of XML-supported code sets and those supported in JDK 1.1. MIME charset names are used on xmlEncoding parameters to methods such as TXDocument#setEncoding and DTD#setEncoding . Java encoding names are used on encoding parameters to methods such as TXDocument#printWithFormat and DTD#printExternal . Common Name Use this name in XML files Name Type Xerces converts to this Java Encoder Name 8 bit Unicode UTF-8 IANA UTF8 ISO Latin 1 ISO-8859-1 ...
MIME2Java: MIME2Java is a convenience class which handles conversions between MIME charset names and Java encoding names. The supported XML encodings are the intersection of XML-supported code sets and those supported in JDK 1.1. MIME charset names are used on xmlEncoding parameters to methods such as TXDocument#setEncoding and DTD#setEncoding . Java encoding names are used on encoding parameters to methods such as TXDocument#printWithFormat and DTD#printExternal . Common Name Use this name in XML files Name Type Xerces converts to this Java Encoder Name 8 bit Unicode UTF-8 IANA UTF8 ISO Latin 1 ISO-8859-1 ...
EncodingMap: EncodingMap is a convenience class which handles conversions between IANA encoding names and Java encoding names, and vice versa. The encoding names used in XML instance documents must be the IANA encoding names specified or one of the aliases for those names which IANA defines. Common Name Use this name in XML files Name Type Xerces converts to this Java Encoder Name 8 bit Unicode UTF-8 IANA UTF8 ISO Latin 1 ISO-8859-1 MIME ISO-8859-1 ISO Latin 2 ISO-8859-2 MIME ISO-8859-2 ISO Latin 3 ISO-8859-3 MIME ISO-8859-3 ISO Latin 4 ISO-8859-4 MIME ISO-8859-4 ISO Latin Cyrillic ISO-8859-5 MIME ISO-8859-5 ...
EncodingMap: EncodingMap is a convenience class which handles conversions between IANA encoding names and Java encoding names, and vice versa. The encoding names used in XML instance documents must be the IANA encoding names specified or one of the aliases for those names which IANA defines. Common Name Use this name in XML files Name Type Xerces converts to this Java Encoder Name 8 bit Unicode UTF-8 IANA UTF8 ISO Latin 1 ISO-8859-1 MIME ISO-8859-1 ISO Latin 2 ISO-8859-2 MIME ISO-8859-2 ISO Latin 3 ISO-8859-3 MIME ISO-8859-3 ISO Latin 4 ISO-8859-4 MIME ISO-8859-4 ISO Latin Cyrillic ISO-8859-5 MIME ISO-8859-5 ...
SchemaType: Represents a schema type. SchemaType is the metadata "type" class for XmlObject , and it plays the analogous role for XmlObject that java.lang.Class plays for java.lang.Object . Every XML Bean class corresponds to a singleton SchemaType object obtainable by ClassName.type (e.g., XmlNonPositiveInteger.type 55 ), and every XML Bean instance has an actual SchemaType, obtainable by XmlObject.schemaType() 55 . The ClassName.type and schemaType() mechanisms are analogous to the ordinary Java ClassName.class and obj.getClass() mechanisms. All schema types are represented by a SchemaType, this includes ...
ReclaimSpaceHelper: This class helps a BaseDataFactory reclaims unused space. Space needs to be reclaimed in the following cases: Row with long columns or overflow row pieces is deleted Insertion of a row that has long columns or overflows to other row pieces is rolled back Row is updated and the head row or some row pieces shrunk Row is updated and some long columns are orphaned because they are updated Row is updated and some long columns are created but the update rolled back Row is updated and some new row pieces are created but the update rolled back We can implement a lot of optimization if we know that btree ...
FTPClient: FTPClient encapsulates all the functionality necessary to store and retrieve files from an FTP server. This class takes care of all low level details of interacting with an FTP server and provides a convenient higher level interface. As with all classes derived from org.apache.commons.net.SocketClient , you must first connect to the server with connect 55 before doing anything, and finally disconnect 55 after you're completely finished interacting with the server. Then you need to check the FTP reply code to see if the connection was successful. For example: boolean error = false; try { int reply; ...
XJCTask: An Ant task for running JaxMe, designed to be JAXB compatible. This task supports the following attributes: Name Description Required/Default schema Name of a schema file being compiled This or nested <schema> elements are required binding An external binding file being applied to the schema file No force Setting this option to true forces the up-to-date check to fail. This option is mainly useful while working on the JaxMe generator. For JaxMe users, which only change schema files, this option isn't of much use. It is designed for JaxMe developers. No, false package Specifies the generated ...
JOCLContentHandler: A org.xml.sax.ContentHandler for the Java Object Configuration Language. JOCL provides an XML syntax for constructing arbitrary Java java.lang.Object instances. It does not define a full XML document type (there's no root element), but rather an XML fragment describing the Object s> Object s to be constructed. In a JOCL fragment, one may define a series of objects using the object element. A trivial example is: <object class="java.util.Date"/> which constructs an instance of java.util.Date using the no-argument constructor. After a "root-level" <object> element has been processed (that ...
SchemaTypeSystem: A finite set of XML Schema component definitions. Every SchemaComponent such as a SchemaType , SchemaGlobalElement , SchemaGlobalAttribute , SchemaModelGroup , SchemaAttributeGroup , or SchemaIdentityConstraint , is defined in exactly one SchemaTypeSystem. (See SchemaComponent.getTypeSystem() 55 .) A single SchemaTypeSystem can include definitions from any number of namespaces; one SchemaTypeSystem consists simply of a set of component definitions that were compiled together. Since every component is defined in a single SchemaTypeSystem, no SchemaTypeSystem other than XmlBeans.getBuiltinTypeSystem() ...
GenericKeyedObjectPool: A configurable org.apache.commons.pool.KeyedObjectPool implementation. When coupled with the appropriate org.apache.commons.pool.KeyedPoolableObjectFactory , GenericKeyedObjectPool provides robust pooling functionality for arbitrary objects. A GenericKeyedObjectPool provides a number of configurable parameters: maxActive 55 controls the maximum number of objects (per key) that can be borrowed from the pool at one time. When non-positive, there is no limit to the number of objects that may be active at one time. When maxActive 55 is exceeded, the pool is said to be exhausted. maxIdle 55 controls ...
Coercions: This class contains the logic for coercing data types before operators are applied to them. The following is the list of rules applied for various type conversions. Applying arithmetic operator Binary operator - A {+,-,*} B if A and B are null return 0 if A or B is BigDecimal, coerce both to BigDecimal and then: if operator is +, return A.add(B) if operator is -, return A.subtract(B) if operator is *, return A.multiply(B) if A or B is Float, Double, or String containing ".", "e", or "E" if A or B is BigInteger, coerce both A and B to BigDecimal and apply operator coerce both A and B to Double and ...
GenericObjectPool: A configurable org.apache.commons.pool.ObjectPool implementation. When coupled with the appropriate org.apache.commons.pool.PoolableObjectFactory , GenericObjectPool provides robust pooling functionality for arbitrary objects. A GenericObjectPool provides a number of configurable parameters: maxActive 55 controls the maximum number of objects that can be borrowed from the pool at one time. When non-positive, there is no limit to the number of objects that may be active at one time. When maxActive 55 is exceeded, the pool is said to be exhausted. maxIdle 55 controls the maximum number of objects ...
Home | Contact Us | Privacy Policy | Terms of Service |