Skip to content

Commit 45e01bf

Browse files
committed
Merge branch 'VCSWP-9488' into 'master'
remove request id where needed See merge request vail-cloud-services/fc-boilerplates/java-sdk!1
2 parents fb7f485 + 16ed617 commit 45e01bf

32 files changed

+36
-276
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ target
2020
.project
2121
.settings/
2222
.DS_Store
23-
/.DS_Store
23+
/.DS_Store
24+
/.vscode

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ group = 'com.github.FreeClimbAPI'
99

1010
sourceCompatibility = 1.7 // java 7
1111
targetCompatibility = 1.7
12-
version = '2.0.0'
12+
version = '3.0.0'
1313

1414
repositories {
1515
mavenCentral()

src/main/java/com/vailsys/freeclimb/api/CommonFields.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/main/java/com/vailsys/freeclimb/api/account/AccountUpdateOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.vailsys.freeclimb.api.account;
22

3-
import com.vailsys.freeclimb.api.CommonFields;
3+
44

55
/**
66
* This class represents the optional fields which can be passed in when
@@ -9,7 +9,7 @@
99
* @see com.vailsys.freeclimb.api.account.AccountRequester#update(String,
1010
* AccountUpdateOptions)
1111
*/
12-
public class AccountUpdateOptions extends CommonFields {
12+
public class AccountUpdateOptions {
1313

1414
/**
1515
* The alias of the account.

src/main/java/com/vailsys/freeclimb/api/application/ApplicationCreateOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.vailsys.freeclimb.api.application;
22

3-
import com.vailsys.freeclimb.api.CommonFields;
3+
44

55
/**
66
* The class represents the optional fields which can be passed in when creating
77
* an Application.
88
*/
9-
public class ApplicationCreateOptions extends CommonFields {
9+
public class ApplicationCreateOptions {
1010

1111
/**
1212
* The alias allows the application to be referred to by a user defined name

src/main/java/com/vailsys/freeclimb/api/application/ApplicationUpdateOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package com.vailsys.freeclimb.api.application;
22

3-
import com.vailsys.freeclimb.api.CommonFields;
3+
44

55
/**
66
* The class represents the optional fields which can be passed in when updating
77
* an Application.
88
*/
9-
public class ApplicationUpdateOptions extends CommonFields {
9+
public class ApplicationUpdateOptions {
1010
/**
1111
* The alias of the application.
1212
*/

src/main/java/com/vailsys/freeclimb/api/call/CallOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
package com.vailsys.freeclimb.api.call;
22

3-
import com.vailsys.freeclimb.api.CommonFields;
3+
44

55
/**
66
* The class represents the common optional fields which can be passed in when
77
* creating a Call.
88
*
99
* @see com.vailsys.freeclimb.api.call.CallsRequester#create(String,String,String,CallOptions)
1010
*/
11-
public class CallOptions extends CommonFields {
11+
public class CallOptions {
1212
/**
1313
* A string of keys to dial after connecting to the number. Refer to SendDigits
1414
* PerCL command for the format of the digits string.

src/main/java/com/vailsys/freeclimb/api/call/CallsUpdateOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.vailsys.freeclimb.api.call;
22

3-
import com.vailsys.freeclimb.api.CommonFields;
3+
44

55
/**
66
* The class represents the optional fields which can be passed in when updating
@@ -9,7 +9,7 @@
99
* @see com.vailsys.freeclimb.api.call.CallsRequester#update(String,
1010
* CallsUpdateOptions)
1111
*/
12-
public class CallsUpdateOptions extends CommonFields {
12+
public class CallsUpdateOptions {
1313
private CallStatus status;
1414

1515
public CallStatus getStatus() {

src/main/java/com/vailsys/freeclimb/api/conference/ConferenceCreateOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
package com.vailsys.freeclimb.api.conference;
22

3-
import com.vailsys.freeclimb.api.CommonFields;
3+
44

55
/**
66
* The class represents the optional fields which can be passed in when creating
77
* a Conference.
88
*
99
* @see com.vailsys.freeclimb.api.conference.ConferencesRequester#create(ConferenceCreateOptions)
1010
*/
11-
public class ConferenceCreateOptions extends CommonFields {
11+
public class ConferenceCreateOptions {
1212
/**
1313
* The alias allows the conference to be referred to by a user defined name
1414
* rather than a FreeClimb generated Id.

src/main/java/com/vailsys/freeclimb/api/conference/ConferenceUpdateOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
package com.vailsys.freeclimb.api.conference;
22

3-
import com.vailsys.freeclimb.api.CommonFields;
3+
44

55
/**
66
* The class represents the optional fields which can be passed in when updating
77
* a Conference.
88
*
99
* @see com.vailsys.freeclimb.api.conference.ConferencesRequester#update(String,ConferenceUpdateOptions)
1010
*/
11-
public class ConferenceUpdateOptions extends CommonFields {
11+
public class ConferenceUpdateOptions {
1212
/**
1313
* The alias of the conference.
1414
*/

0 commit comments

Comments
 (0)