-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from 2060-io/feat/add-call-offer-command
- Loading branch information
Showing
7 changed files
with
93 additions
and
6 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
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
5 changes: 1 addition & 4 deletions
5
src/main/java/io/twentysixty/sa/client/model/message/TerminateConnectionMessage.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
23 changes: 23 additions & 0 deletions
23
src/main/java/io/twentysixty/sa/client/model/message/calls/CallAcceptRequestMessage.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,23 @@ | ||
package io.twentysixty.sa.client.model.message.calls; | ||
|
||
import java.util.Map; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
|
||
import io.twentysixty.sa.client.model.message.BaseMessage; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@JsonInclude(Include.NON_NULL) | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
@Setter | ||
@Getter | ||
public class CallAcceptRequestMessage extends BaseMessage { | ||
|
||
private static final long serialVersionUID = -2840211856886973682L; | ||
|
||
private Map<String, Object> parameters; | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/io/twentysixty/sa/client/model/message/calls/CallEndRequestMessage.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,15 @@ | ||
package io.twentysixty.sa.client.model.message.calls; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
|
||
import io.twentysixty.sa.client.model.message.BaseMessage; | ||
|
||
@JsonInclude(Include.NON_NULL) | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class CallEndRequestMessage extends BaseMessage { | ||
|
||
private static final long serialVersionUID = -2840211856886973682L; | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
src/main/java/io/twentysixty/sa/client/model/message/calls/CallOfferRequestMessage.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,23 @@ | ||
package io.twentysixty.sa.client.model.message.calls; | ||
|
||
import java.util.Map; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
|
||
import io.twentysixty.sa.client.model.message.BaseMessage; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@JsonInclude(Include.NON_NULL) | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
@Setter | ||
@Getter | ||
public class CallOfferRequestMessage extends BaseMessage { | ||
|
||
private static final long serialVersionUID = -2840211856886973682L; | ||
|
||
private Map<String, Object> parameters; | ||
|
||
} |
15 changes: 15 additions & 0 deletions
15
src/main/java/io/twentysixty/sa/client/model/message/calls/CallRejectRequestMessage.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,15 @@ | ||
package io.twentysixty.sa.client.model.message.calls; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonInclude.Include; | ||
|
||
import io.twentysixty.sa.client.model.message.BaseMessage; | ||
|
||
@JsonInclude(Include.NON_NULL) | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class CallRejectRequestMessage extends BaseMessage { | ||
|
||
private static final long serialVersionUID = -2840211856886973682L; | ||
|
||
} |