Skip to content
This repository was archived by the owner on Jul 3, 2020. It is now read-only.

Commit 0a523a5

Browse files
committed
Merge pull request #137 from tkrille/fix-iae-from-jackson
[fix] IllegalArgumentException from Jackson when searching resources
2 parents be31fe3 + 05cf493 commit 0a523a5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# OSIAM Connector4Java
22

3+
## 1.5.1 - 2015-06-01
4+
5+
### Fixes
6+
7+
- IllegalArgumentException from Jackson when searching for resources
8+
39
## 1.5 - 2015-06-01
410

511
### Features

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<groupId>org.osiam</groupId>
2828
<artifactId>connector4java</artifactId>
29-
<version>1.6-SNAPSHOT</version>
29+
<version>1.5.1-SNAPSHOT</version>
3030

3131
<name>OSIAM Connector 4 Java</name>
3232
<description>Native Java API to connect to the REST based OSIAM services</description>

src/main/java/org/osiam/client/AbstractOsiamService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ protected SCIMSearchResult<T> searchResources(Query query, AccessToken accessTok
141141

142142
try {
143143
JavaType queryResultType = TypeFactory.defaultInstance()
144-
.constructParametricType(SCIMSearchResult.class, SCIMSearchResult.class, type);
144+
.constructParametricType(SCIMSearchResult.class, type);
145145

146146
return mapper.readValue(content, queryResultType);
147147
} catch (IOException e) {

0 commit comments

Comments
 (0)