-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Numbers and Conversion clients to use DynamicEndpoint (#477)
* Refactored Numbers to use DynamicEndpoint * Refactored ConversionClient * Refactored NumbersClient endpoint tests * Test NumbersResponseException * Improved Numbers coverage
- Loading branch information
Showing
32 changed files
with
683 additions
and
1,462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 0 additions & 67 deletions
67
src/main/java/com/vonage/client/conversion/ConversionEndpoint.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
src/main/java/com/vonage/client/numbers/BaseNumberRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright 2023 Vonage | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package com.vonage.client.numbers; | ||
|
||
import com.vonage.client.QueryParamsRequest; | ||
import org.apache.http.client.methods.RequestBuilder; | ||
import java.util.LinkedHashMap; | ||
import java.util.Map; | ||
|
||
class BaseNumberRequest implements QueryParamsRequest { | ||
private final String country, msisdn; | ||
|
||
public BaseNumberRequest(String country, String msisdn) { | ||
this.country = country; | ||
this.msisdn = msisdn; | ||
} | ||
|
||
public String getCountry() { | ||
return country; | ||
} | ||
|
||
public String getMsisdn() { | ||
return msisdn; | ||
} | ||
|
||
@Deprecated | ||
public void addParams(RequestBuilder request) { | ||
makeParams().forEach(request::addParameter); | ||
} | ||
|
||
@Override | ||
public Map<String, String> makeParams() { | ||
LinkedHashMap<String, String> params = new LinkedHashMap<>(4); | ||
params.put("country", country); | ||
params.put("msisdn", msisdn); | ||
return params; | ||
} | ||
} |
63 changes: 0 additions & 63 deletions
63
src/main/java/com/vonage/client/numbers/BuyNumberEndpoint.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 0 additions & 63 deletions
63
src/main/java/com/vonage/client/numbers/CancelNumberEndpoint.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.