File tree Expand file tree Collapse file tree 11 files changed +1020
-1046
lines changed
main/java/com/github/freeclimbapi
test/java/com/github/freeclimbapi Expand file tree Collapse file tree 11 files changed +1020
-1046
lines changed Original file line number Diff line number Diff line change @@ -306,5 +306,5 @@ src/main/java/com/github/freeclimbapi/auth/ApiKeyAuth.java
306
306
src/main/java/com/github/freeclimbapi/auth/Authentication.java
307
307
src/main/java/com/github/freeclimbapi/auth/HttpBasicAuth.java
308
308
src/main/java/com/github/freeclimbapi/auth/HttpBearerAuth.java
309
- src/test/java/com/github/freeclimbapi/AddToConferenceAllOfTest .java
310
- src/test/java/com/github/freeclimbapi/AddToConferenceTest .java
309
+ src/test/java/com/github/freeclimbapi/SMSTenDLCBrandTest .java
310
+ src/test/java/com/github/freeclimbapi/SMSTenDLCPartnerCampaignBrandTest .java
Original file line number Diff line number Diff line change @@ -9,6 +9,14 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
9
9
10
10
None
11
11
12
+ <a name =" 5.4.3 " ></a >
13
+
14
+ ## [ 5.4.3] 2023-08-28
15
+
16
+ ### Changed
17
+
18
+ - Changed setters from public to private for specific read-only variables
19
+
12
20
<a name =" 5.4.2 " ></a >
13
21
14
22
## [ 5.4.2] 2023-07-26
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ Add this dependency to your project's POM:
40
40
<dependency >
41
41
<groupId >com.github.freeclimbapi</groupId >
42
42
<artifactId >freeclimb-java-client</artifactId >
43
- <version >5.4.2 </version >
43
+ <version >5.4.3 </version >
44
44
<scope >compile</scope >
45
45
</dependency >
46
46
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
56
56
}
57
57
58
58
dependencies {
59
- implementation "com.github.freeclimbapi:freeclimb-java-client:5.4.2 "
59
+ implementation "com.github.freeclimbapi:freeclimb-java-client:5.4.3 "
60
60
implementation("com.squareup.okhttp3:okhttp:4.9.3")
61
61
implementation("com.squareup.okhttp3:logging-interceptor:4.9.3")
62
62
}
@@ -72,7 +72,7 @@ mvn clean package
72
72
73
73
Then manually install the following JARs:
74
74
75
- * ` target/freeclimb-java-client-5.4.2 .jar `
75
+ * ` target/freeclimb-java-client-5.4.3 .jar `
76
76
* ` target/lib/*.jar `
77
77
78
78
## Getting Started
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ apply plugin: 'java'
4
4
apply plugin : ' com.diffplug.spotless'
5
5
6
6
group = ' com.github.freeclimbapi'
7
- version = ' 5.4.2 '
7
+ version = ' 5.4.3 '
8
8
9
9
buildscript {
10
10
repositories {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
2
2
settings(
3
3
organization := " com.github.freeclimbapi" ,
4
4
name := " freeclimb-java-client" ,
5
- version := " 5.4.2 " ,
5
+ version := " 5.4.3 " ,
6
6
scalaVersion := " 2.11.4" ,
7
7
scalacOptions ++= Seq (" -feature" ),
8
8
javacOptions in compile ++= Seq (" -Xlint:deprecation" ),
Original file line number Diff line number Diff line change 5
5
<artifactId >freeclimb-java-client</artifactId >
6
6
<packaging >jar</packaging >
7
7
<name >freeclimb-java-client</name >
8
- <version >5.4.2 </version >
8
+ <version >5.4.3 </version >
9
9
<url >https://github.com/freeclimbapi/java-sdk</url >
10
10
<description >FreeClimb Java Client</description >
11
11
<scm >
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ private void init() {
131
131
json = new JSON ();
132
132
133
133
// Set default User-Agent.
134
- setUserAgent ("OpenAPI-Generator/5.4.2 /java" );
134
+ setUserAgent ("OpenAPI-Generator/5.4.3 /java" );
135
135
136
136
authentications = new HashMap <String , Authentication >();
137
137
}
Original file line number Diff line number Diff line change @@ -543,7 +543,7 @@ public String getCspId() {
543
543
return cspId ;
544
544
}
545
545
546
- public void setCspId (String cspId ) {
546
+ private void setCspId (String cspId ) {
547
547
this .cspId = cspId ;
548
548
}
549
549
@@ -559,7 +559,7 @@ public String getBrandId() {
559
559
return brandId ;
560
560
}
561
561
562
- public void setBrandId (String brandId ) {
562
+ private void setBrandId (String brandId ) {
563
563
this .brandId = brandId ;
564
564
}
565
565
@@ -1038,7 +1038,7 @@ public String getUniversalEin() {
1038
1038
return universalEin ;
1039
1039
}
1040
1040
1041
- public void setUniversalEin (String universalEin ) {
1041
+ private void setUniversalEin (String universalEin ) {
1042
1042
this .universalEin = universalEin ;
1043
1043
}
1044
1044
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ public String getBrandId() {
131
131
return brandId ;
132
132
}
133
133
134
- public void setBrandId (String brandId ) {
134
+ private void setBrandId (String brandId ) {
135
135
this .brandId = brandId ;
136
136
}
137
137
You can’t perform that action at this time.
0 commit comments