Skip to content

Commit

Permalink
Release 7.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Oct 4, 2018
1 parent 03083a1 commit a79ec39
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion mujina-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.1</version>
<version>7.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mujina-common/src/main/java/mujina/saml/SAMLBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static void signAssertion(SignableXMLObject signableXMLObject, Credential

public static Optional<String> getStringValueFromXMLObject(XMLObject xmlObj) {
if (xmlObj instanceof XSString) {
return Optional.of(((XSString) xmlObj).getValue());
return Optional.ofNullable(((XSString) xmlObj).getValue());
} else if (xmlObj instanceof XSAny) {
XSAny xsAny = (XSAny) xmlObj;
String textContent = xsAny.getTextContent();
Expand Down
2 changes: 1 addition & 1 deletion mujina-idp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.1</version>
<version>7.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion mujina-idp/src/main/resources/public/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ span.remove-attribute-value {
font-size: 16px;
}
div.attribute-value label {
font-size: 12px;
font-size: 13px;
}
div.attribute-value input {
margin-top: 2px;
Expand Down
5 changes: 0 additions & 5 deletions mujina-idp/src/main/resources/saml-attributes.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,6 @@
"id": "isMemberOf",
"multiplicity": true
},
{
"name": "urn:mace:dir:attribute-def:uid",
"id": "uid",
"multiplicity": false
},
{
"name": "urn:mace:dir:attribute-def:preferredLanguage",
"id": "preferredLanguage",
Expand Down
2 changes: 1 addition & 1 deletion mujina-sp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.1</version>
<version>7.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>org.openconext</groupId>
<artifactId>mujina</artifactId>
<version>7.0.1</version>
<version>7.0.2</version>
<packaging>pom</packaging>

<properties>
Expand Down

0 comments on commit a79ec39

Please sign in to comment.