Geronimo Framework, Configs :: J2EE Security.
Basic Geronimo server security infrastructure.
Here is the list of declaration for j2ee-security. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>j2ee-security</artifactId> <version>2.1.3</version> </dependency>
If you think this Maven repository POM file listing for j2ee-security is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The j2ee-security-2.1.3 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JEE Container | geronimo-gbean-deployer 2.1.3 The GBean Deployer | 17 |
Network | rmi-naming 2.1.3 Fundamental geronimo services including the plugin installer. | 5 |
The following table lists the most popular artifacts which are depending on j2ee-security-2.1.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JEE Container | transaction 2.1.3 Geronimo transaction manager module. | 9 |
Security | server-security-config 2.1.3 Sample security configuration for a demo geronimo server. Not suitable for production use. | 8 |
The following plugins are used in the j2ee-security-2.1.3.jar
Here is the content of the POM file.
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- $Rev: 693513 $ $Date: 2008-09-09 12:59:32 -0400 (Tue, 09 Sep 2008) $ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.geronimo.framework</groupId> <artifactId>configs</artifactId> <version>2.1.3</version> </parent> <!-- change this to server-security --> <artifactId>j2ee-security</artifactId> <name>Geronimo Framework, Configs :: J2EE Security</name> <packaging>car</packaging> <description>Basic Geronimo server security infrastructure</description> <dependencies> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-gbean-deployer</artifactId> <version>${version}</version> <type>car</type> <scope>provided</scope> </dependency> <!-- parent --> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>rmi-naming</artifactId> <version>${version}</version> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-security</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-jmx-remoting</artifactId> <version>${version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.geronimo.buildsupport</groupId> <artifactId>car-maven-plugin</artifactId> <configuration> <useMavenDependencies> <value>true</value> <includeVersion>true</includeVersion> </useMavenDependencies> <category>Security</category> <instance> <plugin-artifact> <config-xml-content> <gbean name="JMXService"> <attribute name="protocol">rmi</attribute> <attribute name="host">#{ServerHostname}</attribute> <attribute name="port">#{JMXPort + PortOffset}</attribute> <attribute name="urlPath">/jndi/rmi://#{ServerHostname}:#{NamingPort + PortOffset}/JMXConnector</attribute> </gbean> </config-xml-content> <config-substitution key="JMXPort">9999</config-substitution> </plugin-artifact> </instance> </configuration> </plugin> </plugins> </build> </project>