Security: System.
Main entry point and Facade around all things security..
Here is the list of declaration for security-system. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-system</artifactId> <version>2.4</version> </dependency>
If you think this Maven repository POM file listing for security-system is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the security-system-2.4.jar
org.sonatype.security org.sonatype.security.authentication org.sonatype.security.authorization org.sonatype.security.email org.sonatype.security.events org.sonatype.security.usermanagement
Here is the content of the POM file.
<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"> <parent> <groupId>org.sonatype.security</groupId> <artifactId>security-parent</artifactId> <version>2.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>security-system</artifactId> <name>Security: System</name> <description>Main entry point and Facade around all things security.</description> <dependencies> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>${shiro.version}</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-ehcache</artifactId> <version>${shiro.version}</version> </dependency> <dependency> <groupId>org.sonatype.sisu</groupId> <artifactId>sisu-inject-bean</artifactId> </dependency> <dependency> <groupId>org.sonatype.spice</groupId> <artifactId>plexus-ehcache</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.sonatype.plexus.appevents</groupId> <artifactId>plexus-app-events-api</artifactId> </dependency> <dependency> <groupId>org.sonatype.plexus.appevents</groupId> <artifactId>simple-event-multicaster</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>org.sonatype.configuration</groupId> <artifactId>base-configuration</artifactId> </dependency> <!-- other security modules --> <dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-configuration</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> </dependencies> </project>