-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,878 changed files
with
392,124 additions
and
3 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
EIDAS-Sources-1.4.5-MDSL/AdditionalFiles/JBOSS7/org/apache/xml-apis/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- | ||
~ JBoss, Home of Professional Open Source. | ||
~ Copyright 2011, Red Hat, Inc., and individual contributors | ||
~ as indicated by the @author tags. See the copyright.txt file in the | ||
~ distribution for a full listing of individual contributors. | ||
~ | ||
~ This is free software; you can redistribute it and/or modify it | ||
~ under the terms of the GNU Lesser General Public License as | ||
~ published by the Free Software Foundation; either version 2.1 of | ||
~ the License, or (at your option) any later version. | ||
~ | ||
~ This software is distributed in the hope that it will be useful, | ||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
~ Lesser General Public License for more details. | ||
~ | ||
~ You should have received a copy of the GNU Lesser General Public | ||
~ License along with this software; if not, write to the Free | ||
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
--> | ||
|
||
<module xmlns="urn:jboss:module:1.1" name="org.apache.xml-apis"> | ||
<resources> | ||
<resource-root path="xml-apis-1.4.01.jar"/> | ||
</resources> | ||
|
||
</module> | ||
|
11 changes: 11 additions & 0 deletions
11
EIDAS-Sources-1.4.5-MDSL/AdditionalFiles/JBOSS7/org/bouncycastle/main/module.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module xmlns="urn:jboss:module:1.1" name="org.bouncycastle"> | ||
<resources> | ||
<resource-root path="bcprov-jdk15on-1.60.jar"/> | ||
</resources> | ||
<dependencies> | ||
<module name="javax.api"/> | ||
<module name="org.jboss.logging"/> | ||
<module name="org.jboss.modules"/> | ||
</dependencies> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<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> | ||
<artifactId>eidas-commons</artifactId> | ||
<packaging>${mod.packaging.type}</packaging> | ||
<name>eIDAS Commons</name> | ||
<description> | ||
The EIDASCommons library provides beans, Java Interfaces and utility classes to integrate EidasNode and SAML | ||
Engine. | ||
</description> | ||
<parent> | ||
<groupId>eu.eidas</groupId> | ||
<artifactId>eidas-parent</artifactId> | ||
<version>1.4.5</version> | ||
<relativePath>../EIDAS-Parent/pom.xml</relativePath> | ||
</parent> | ||
<dependencies> | ||
<dependency> | ||
<groupId>eu.eidas</groupId> | ||
<artifactId>eidas-light-commons</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>joda-time</groupId> | ||
<artifactId>joda-time</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk15on</artifactId> | ||
</dependency> | ||
<!-- Bouncy Castle --> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>servlet-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.owasp.encoder</groupId> | ||
<artifactId>encoder</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.hazelcast</groupId> | ||
<artifactId>hazelcast</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.hazelcast</groupId> | ||
<artifactId>hazelcast-wm</artifactId> | ||
</dependency> | ||
<!-- TEST --> | ||
<!--<dependency>--> | ||
<!--<groupId>org.slf4j</groupId>--> | ||
<!--<artifactId>slf4j-log4j12</artifactId>--> | ||
<!--<scope>test</scope>--> | ||
<!--</dependency>--> | ||
<dependency> | ||
<groupId>ch.qos.logback</groupId> | ||
<artifactId>logback-classic</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<resources> | ||
<resource> | ||
<directory>${project.basedir}/src/main/resources</directory> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
<testResources> | ||
<testResource> | ||
<directory>src/test/resources</directory> | ||
<includes> | ||
<include>log4j.xml</include> | ||
<include>*.properties</include> | ||
</includes> | ||
</testResource> | ||
</testResources> | ||
</build> | ||
<profiles> | ||
<profile> | ||
<id>metrics</id> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>cobertura-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>cobertura-maven-plugin</artifactId> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
</project> |
66 changes: 66 additions & 0 deletions
66
...rces-1.4.5-MDSL/EIDAS-Commons/src/main/java/eu/eidas/auth/commons/AttributeConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* This work is Open Source and licensed by the European Commission under the | ||
* conditions of the European Public License v1.1 | ||
* | ||
* (http://www.osor.eu/eupl/european-union-public-licence-eupl-v.1.1); | ||
* | ||
* any use of this file implies acceptance of the conditions of this license. | ||
* 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. | ||
*/ | ||
package eu.eidas.auth.commons; | ||
|
||
/** | ||
* This enum class contains all the eIDAS Node, Commons and Specific errors constant identifiers. | ||
*/ | ||
public enum AttributeConstants { | ||
|
||
/** | ||
* Represents the attribute's name index. | ||
*/ | ||
ATTR_NAME_INDEX(0), | ||
/** | ||
* Represents the attribute's type index. | ||
*/ | ||
ATTR_TYPE_INDEX(1), | ||
/** | ||
* Represents the attribute's value index. | ||
*/ | ||
ATTR_VALUE_INDEX(2), | ||
/** | ||
* Represents the attribute's status index. | ||
*/ | ||
ATTR_STATUS_INDEX(3), | ||
/** | ||
* Represents the number of allowed tuples. | ||
*/ | ||
NUMBER_TUPLES(4); | ||
|
||
/** | ||
* Represents the constant's value. | ||
*/ | ||
private final transient int attribute; | ||
|
||
/** | ||
* Solo Constructor. | ||
* | ||
* @param attr The Attribute Constant value. | ||
*/ | ||
AttributeConstants(final int attr) { | ||
|
||
this.attribute = attr; | ||
} | ||
|
||
/** | ||
* Return the Constant Value. | ||
* | ||
* @return The constant value. | ||
*/ | ||
public int intValue() { | ||
|
||
return attribute; | ||
} | ||
} |
Oops, something went wrong.