Skip to content

Commit

Permalink
Merge pull request #277 from plivo/VT-7705
Browse files Browse the repository at this point in the history
filterParamAdded
  • Loading branch information
sandeep-plivo authored Jun 3, 2024
2 parents 14e3a47 + 4bcdd15 commit c1f8f64
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [5.43.1](https://github.com/plivo/plivo-java/tree/v5.42.1) (2024-05-31)
**Feature - Adding filtering support for List Application API**
- Added new filter param `appName` for list application api

## [5.43.0](https://github.com/plivo/plivo-java/tree/v5.43.0) (2024-05-31)
**Feature - Number Masking Feature Added**
- Number Masking APIs added to create, update, delete and list sessions
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,21 @@ The Plivo Java SDK makes it simpler to integrate communications into your Java a

### To Install Stable release

You can use this SDK by adding it as a dependency in your dependency management tool. Alternatively, you can use the [JAR file](https://search.maven.org/remotecontent?filepath=com/plivo/plivo-java/5.43.0/plivo-java-5.43.0.jar).

You can use this SDK by adding it as a dependency in your dependency management tool. Alternatively, you can use the [JAR file](https://search.maven.org/remotecontent?filepath=com/plivo/plivo-java/5.43.0/plivo-java-5.43.1.jar).

If you are using Maven, use the following XML to include the Plivo SDK as a dependency.

```xml
<dependency>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>5.43.0</version>
<version>5.43.1</version>
</dependency>
```

If you are using Gradle, use the following line in your dependencies.
```
compile 'com.plivo:plivo-java:5.43.0'
compile 'com.plivo:plivo-java:5.43.1'
```

### To Install Beta release
Expand Down
2 changes: 1 addition & 1 deletion pom.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Written manually.

version=5.43.0
version=5.43.1
groupId=com.plivo
artifactId=plivo-java

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.plivo</groupId>
<artifactId>plivo-java</artifactId>
<version>5.43.0</version>
<version>5.43.1</version>
<name>plivo-java</name>
<description>A Java SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML</description>
<licenses>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ public class ApplicationLister extends VoiceLister<Application> {

private String subaccount;

private String appName;

public String subaccount() {
return this.subaccount;
}
Expand All @@ -16,6 +18,14 @@ public ApplicationLister subaccount(final String subaccount) {
this.subaccount = subaccount;
return this;
}
public String appName() {
return this.appName;
}

public ApplicationLister appName(final String appName) {
this.appName = appName;
return this;
}


@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/com/plivo/api/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.43.0
5.43.1

0 comments on commit c1f8f64

Please sign in to comment.