a

activation

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).
http://java.sun.com/products/javabeans/jaf/index.jsp
Files download
File Operation
activation-1.0.2.pom download
Apache Maven
<dependency>
  <groupId>javax.activation</groupId>
  <artifactId>activation</artifactId>
  <version>1.0.2</version>
</dependency>
Gradle Groovy
implementation 'javax.activation:activation:1.0.2'
Gradle Kotlin
implementation("javax.activation:activation:1.0.2")
Scala SBT
libraryDependencies += "javax.activation" % "activation" % "1.0.2"
Groovy Grape
@Grapes(
  @Grab(group='javax.activation', module='activation', version='1.0.2')
)
Apache Ivy
<dependency org="javax.activation" name="activation" rev="1.0.2" />
Leiningen
[javax.activation/activation "1.0.2"]
Apache Buildr
'javax.activation:activation:jar:1.0.2'
Dependencies
The project has no third-party dependencies