Skip to content

Commit 0ce1bb8

Browse files
committed
Finish v0.4
2 parents cb5775d + 072d7da commit 0ce1bb8

87 files changed

Lines changed: 496 additions & 194 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ Changelog for OpenEstate-IS24-REST
22
==================================
33

44

5+
0.4 (29 Jul 2017)
6+
-----------------
7+
8+
- Updated to Java 7.
9+
- Updated `commons-lang` library to version 3.6.
10+
- Add dependency to `commons-text` library in version 1.1.
11+
12+
513
0.3.3 (14 May 2017)
614
-------------------
715

OpenEstate-IS24-REST-examples/mvn-clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# Copyright 2014-2017 OpenEstate.org
44
#

OpenEstate-IS24-REST-examples/mvn-findbugs-gui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# Copyright 2014-2017 OpenEstate.org
44
#

OpenEstate-IS24-REST-examples/mvn-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
#
33
# Copyright 2014-2017 OpenEstate.org
44
#

OpenEstate-IS24-REST-examples/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<parent>
77
<groupId>org.openestate.is24</groupId>
88
<artifactId>ALL</artifactId>
9-
<version>0.3.3</version>
9+
<version>0.4</version>
1010
</parent>
1111

1212
<groupId>org.openestate.is24</groupId>
1313
<artifactId>OpenEstate-IS24-REST-examples</artifactId>
14-
<version>0.3.3</version>
14+
<version>0.4</version>
1515
<packaging>jar</packaging>
1616

1717
<name>OpenEstate-IS24-REST-examples</name>
@@ -104,8 +104,8 @@
104104
<groupId>org.apache.maven.plugins</groupId>
105105
<artifactId>maven-compiler-plugin</artifactId>
106106
<configuration>
107-
<source>1.6</source>
108-
<target>1.6</target>
107+
<source>1.7</source>
108+
<target>1.7</target>
109109
<showDeprecation>true</showDeprecation>
110110
<debug>false</debug>
111111
</configuration>

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/AuthorizationExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* This example illustrates the authorization of the client at the Webservice.
2424
*
25-
* @author Andreas Rudolph <andy@openindex.de>
25+
* @author Andreas Rudolph
2626
*/
2727
public class AuthorizationExample
2828
{

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/BulkUploadExample.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* This example illustrates a bulk upload of multiple real estates and contact
3636
* persons.
3737
*
38-
* @author Andreas Rudolph <andy@openindex.de>
38+
* @author Andreas Rudolph
3939
*/
4040
public class BulkUploadExample
4141
{
@@ -62,7 +62,7 @@ public static void main( String[] args )
6262
try
6363
{
6464
// create some random contact persons
65-
List<String> contactIds = new ArrayList<String>();
65+
List<String> contactIds = new ArrayList<>();
6666
int contactCount = RandomUtils.nextInt( 1, 5 );
6767
for (int i=0; i<contactCount; i++)
6868
{

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/DefaultClientExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* This example illustrates the creation of a {@link DefaultClient} for
2424
* HTTP transfers via {@link java.net.HttpURLConnection}.
2525
*
26-
* @author Andreas Rudolph <andy@openindex.de>
26+
* @author Andreas Rudolph
2727
*/
2828
@SuppressFBWarnings
2929
public class DefaultClientExample

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/DownloadRealEstateExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* This example illustrates the export of a single real estate from the
3030
* Webservice.
3131
*
32-
* @author Andreas Rudolph <andy@openindex.de>
32+
* @author Andreas Rudolph
3333
*/
3434
public class DownloadRealEstateExample
3535
{

OpenEstate-IS24-REST-examples/src/main/java/org/openestate/is24/restapi/examples/DownloadRealEstateListExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* This example illustrates the export of all real estates, that are available
3131
* through the Webservice.
3232
*
33-
* @author Andreas Rudolph <andy@openindex.de>
33+
* @author Andreas Rudolph
3434
*/
3535
public class DownloadRealEstateListExample
3636
{

0 commit comments

Comments
 (0)