JavaBeans Activation Framework (JAF).
JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perfor....
Here is the list of declaration for activation. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for activation is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Common Development and Distribution License (CDDL) v1.0
URL: https://glassfish.dev.java.net/public/CDDLv1.0.html.
The following table lists the most popular artifacts which are depending on activation-1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-email 1.2 Commons-Email aims to provide an API for sending email. It is built on top of the JavaMail API, which it aims to simplify. | 8 |
Spring | spring-web 4.0.0.RELEASE Spring Web | 39 |
XML Parser | stax-ex 1.7 Extensions to JSR-173 StAX API. | 19 |
Spring | spring-web 3.2.0.RELEASE Spring Web | 7 |
XML Parser | stax-ex 1.4 Extensions to JSR-173 StAX API. | 9 |
Spring | spring-web 3.2.1.RELEASE Spring Web | 10 |
Spring | spring-web 3.2.3.RELEASE Spring Web | 15 |
Spring | spring-context-support 3.2.4.RELEASE Spring Context Support | 10 |
Spring | spring-web 3.2.6.RELEASE Spring Web | 8 |
XML Binding | jaxb-api 2.2.3 JAXB (JSR 222) API | 26 |
Testing | subethasmtp 2.1.0 A multithreaded standalone SMTP mail server implementation and test harness. | 19 |
XML | streambuffer 1.5.1 Stream based representation for XML infoset | 10 |
Java Library | saaj-api 1.3.4 SAAJ API: JSR-67 | 50 |
Spring | spring-web 3.2.5.RELEASE Spring Web | 5 |
Spring | spring-context-support 2.5.5 Spring Framework: Context Support | 5 |
Spring | spring-test 3.2.9.RELEASE Spring TestContext Framework | 7 |
XML Parser | stax-ex 1.6 Extensions to JSR-173 StAX API. | 15 |
Spring | spring 2.5.5 Spring Framework | 11 |
Spring | spring-web 3.2.7.RELEASE Spring Web | 6 |
Spring | spring-web 3.2.8.RELEASE Spring Web | 24 |
Development | mule-core 1.4.0 Mule server and core classes | 6 |
Spring | spring-oxm 1.0.0 Spring Object/XML Mapping abstraction | 5 |
Spring | spring-web 3.2.9.RELEASE Spring Web | 10 |
Spring | spring-context-support 3.2.0.RELEASE Spring Context Support | 5 |
XML Parser | stax-ex 1.2 Extensions to JSR-173 StAX API. | 28 |
Spring | spring 2.5.2 Spring Framework | 8 |
Development | petals-cdk-core 3.0 The PEtALS component framework core. This framework is used to easily create JBI 1.0 compliant components. | 5 |
Spring | spring-test 3.2.8.RELEASE Spring TestContext Framework | 37 |
Network | mail 1.4.1 The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications. | 108 |
Spring | spring 2.5.6.SEC03 Spring Framework | 12 |
Spring | jaxws-spring 1.8 Configure JAX-WS with Spring | 16 |
Spring | spring 2.5.4 Spring Framework | 8 |
XML Binding | jaxb-api 2.2.2 JAXB (JSR 222) API | 27 |
XML Parser | stax-ex 1.7.1 Extensions to JSR-173 StAX API. | 13 |
Data Structure | commons-email 1.1 Commons-Email aims to provide a API for sending email. It is built on top of the JavaMail API, which it aims to simplify. | 27 |
Spring | spring 2.5.6 Spring Framework | 51 |
XML Binding | jaxb-api 2.2.1 JAXB (JSR 222) API | 14 |
Network | mail 1.4 The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications. | 461 |
Spring | spring-web 3.2.4.RELEASE Spring Web | 13 |
XML | streambuffer 1.5 Stream based representation for XML infoset | 6 |
Spring | spring 2.5.6.SEC01 Spring Framework | 5 |
XML | streambuffer 1.4 Stream based representation for XML infoset | 29 |
Development | petals-cdk 3.0-beta The PEtALS component framework. This framework is used to easily create JBI 1.0 compliant components. | 6 |
The following packages are defined in the activation-1.1.jar
com.sun.activation.registries com.sun.activation.viewers javax.activation
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> <name>JavaBeans Activation Framework (JAF)</name> <description> JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perform the operation(s). </description> <url>http://java.sun.com/products/javabeans/jaf/index.jsp</url> <licenses> <license> <name>Common Development and Distribution License (CDDL) v1.0</name> <url>https://glassfish.dev.java.net/public/CDDLv1.0.html</url> <distribution>repo</distribution> </license> </licenses> <distributionManagement> <downloadUrl>https://maven-repository.dev.java.net/nonav/repository/javax.activation/jars/activation-1.1.jar</downloadUrl> </distributionManagement> </project>