Skip to content

Commit ecb537b

Browse files
committed
Release 2.5 (#124)
* Update version 2.3 -> 2.5-SNAPSHOT * Add x-jasper-xdm header for spring auth requests * Get encryption always responds with empty key on error * Cache server info response as singleton Info cache as enum Reduce info call on authorization * Parse milliseconds/time zone for get job unit list case * Expose execution ID as public API Add blocking API for RX module Add export ID gettter Expose report execution id * Fix Location Header relative path issue * Add platform dependent job unit date parser * Added report label property for jobs (#109) * Feature: Schedule Recurrence Calendar API fixes (#110) * Fix calendar recurrence all months API * Fix month mapping according to REST format * Handle all days issue for calendar trigger * Map start types for calendar trigger while parcing entity * Extend calendar recurrence error cases * Fix JobUnitMapperTest * Allow report label to be null on lower API (#111) * Fix: Additional job error creation cases (#112) * Handle 500 unexpected error for job trigger creation * Handle calendar trigger incorrect days in month pattern * Handle calendar trigger incorrect minutes/hours * Add missing day for week (#113) * Add jacoco test plugin * Fix: Fixed problem with searching jobs for pre 62 JRS (#114) * Fixed problem with searching jobs for pre 62 JRS * Refactor JobSearch62Task naming and test cases * Implement job search task spec * Implement tests for LegacyJobSearchTaskTest * Resolve job search task version at runtime * Return same task for all no query requests * Refactor names for search task * Substitute search criteria empty values with null * Add javadocs for JobSearchCriteria * Add AuthenticationHandler callback (#115) * Remove attachment prefix implicit encoding (#117) * Feature: Add FTP schedule option/extend repository destination configuration (#116) * Split trigger to entity mapper from form mapper scope * Split trigger mapper from form mapper to entity scope * Implement standalone source mapper * Implement standalone destination mapper * Extend repositort destination DTO service generic fields * Implement repo destiantion mapping entity -> form * Implement repo destiantion mapping form -> entity * Enforce URI constraints on repository output path * Implementing OutputFtpInfo service object * Add OutputFtpInfoEntity and mapper tests * Add precondition check for negative ports in FTP info * Feature: Legal updates for release 2.5 (#118) * Update EULA to version 2.5 * Update copyright year from 2015 -> 2016 * Feature: Add support for FTP auth keys and type SFTP (#119) * Add JobOutputFtpInfo.Type SFTP * Add ssh key configuration support for FTP info * Add javadoc for JobFtpAuthKey * Feature: Schedule mail notification (#120) * Add DTO objects for mail notification on schedule * Implementing mail notification mapper * Fix adresses mapping on network layer/add version field * Force subject not null constaraint * Refactor Authentication Handler -> Authentication Lifecycle (#122) * Feature: Add Schedule Alert API (#121) * Fix javadoc TODOs for version 2.5 * Add JobAlert DTO and service API * Implement job alert mapper * Add JobSource instance builder * Fix: Schedule alert job state API (#123) * Fix javadoc TODOs for version 2.5 * Add JobAlert DTO and service API * Implement job alert mapper * Add alert job state property
1 parent 613f38b commit ecb537b

File tree

469 files changed

+12247
-2318
lines changed

Some content is hidden

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

469 files changed

+12247
-2318
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,4 @@ com_crashlytics_export_strings.xml.DS_Store
5454
out
5555
bin
5656
gen
57+
.DS_Store

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
@@ -36,7 +36,8 @@ buildscript {
3636
subprojects {
3737
group = 'com.jaspersoft.android.sdk'
3838

39-
ext.clientModuleVersion = '2.3'
39+
ext.clientModuleVersion = '2.5-SNAPSHOT'
40+
ext.jacocoVersion = '0.7.6.201602180812'
4041

4142
repositories {
4243
jcenter()
@@ -47,6 +48,7 @@ subprojects {
4748

4849
// ensure clean is also triggered for root build folder
4950
apply plugin: 'java'
51+
apply plugin: 'jacoco'
5052
apply plugin: 'build-dashboard'
5153

5254
buildDashboard {

buildsystem/integration_env.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
# Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
# http://community.jaspersoft.com/project/mobile-sdk-android
44
#
55
# Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/GetReportParametersUseCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/GetResourcesUrisUseCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/GetServerInfoUseCase.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.testkit;
226

327
import com.google.gson.Gson;

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/HttpUseCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/ListReportParamsCommand.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.testkit;
226

327
/**

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/ListResourcesUrisCommand.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.testkit;
226

327
/**

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/LocalCookieManager.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.testkit;
226

327
import java.net.CookieHandler;

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/TestKitClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/dto/AuthConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/dto/Info.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.testkit.dto;
226

327
import com.google.gson.annotations.Expose;

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/dto/SampleServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/exception/AuthenticationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/exception/ClientErrorException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/exception/HttpException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/main/java/com/jaspersoft/android/sdk/testkit/exception/ServerErrorException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/test/java/com/jaspersoft/android/sdk/env/AnonymousServerTestBundle.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.env;
226

327
import com.jaspersoft.android.sdk.network.AnonymousClient;

core-integration-tests/src/test/java/com/jaspersoft/android/sdk/env/IntegrationEnv.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/test/java/com/jaspersoft/android/sdk/env/JrsEnvironmentRule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2015 TIBCO Jaspersoft Corporation. All rights reserved.
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
33
* http://community.jaspersoft.com/project/mobile-sdk-android
44
*
55
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,

core-integration-tests/src/test/java/com/jaspersoft/android/sdk/env/PendingTask.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.env;
226

327
/**

core-integration-tests/src/test/java/com/jaspersoft/android/sdk/env/ReportTestBundle.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.env;
226

327
import com.jaspersoft.android.sdk.network.AuthorizedClient;

core-integration-tests/src/test/java/com/jaspersoft/android/sdk/env/ResourceTestBundle.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
* Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved.
3+
* http://community.jaspersoft.com/project/mobile-sdk-android
4+
*
5+
* Unless you have purchased a commercial license agreement from TIBCO Jaspersoft,
6+
* the following license terms apply:
7+
*
8+
* This program is part of TIBCO Jaspersoft Mobile SDK for Android.
9+
*
10+
* TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as published by
12+
* the Free Software Foundation, either version 3 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* TIBCO Jaspersoft Mobile SDK is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU Lesser General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU Lesser General Public License
21+
* along with TIBCO Jaspersoft Mobile SDK for Android. If not, see
22+
* <http://www.gnu.org/licenses/lgpl>.
23+
*/
24+
125
package com.jaspersoft.android.sdk.env;
226

327
import com.jaspersoft.android.sdk.network.AuthorizedClient;

0 commit comments

Comments
 (0)