Skip to content

Commit

Permalink
Merge pull request #14 from 2060-io/feat/add-prefer-language
Browse files Browse the repository at this point in the history
feat: add profile parameters
  • Loading branch information
lotharking authored Oct 1, 2024
2 parents 5ebcee5 + a89518d commit 63d65f3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 22 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# service-agent-java-client

Client tools for building Quarkus java DIDcomm Verifiable Credential powered conversational service (Chatbots) with 2060.io Service Agent
Client tools for building Quarkus java DIDcomm Verifiable Credential powered conversational service (Chatbots) with [2060.io Service Agent](https://github.com/2060-io/2060-service-agent/blob/main/doc/service-agent-api.md)

## Releases

| Version | Release Date | Type of Change | Description |
|---------|--------------|---------------------|-----------------------------------------------------------------------------|
| 2.0.9 | 2024-10-DD | Patch | - add profile message parameters |
| 2.0.8 | 2024-09-27 | Patch | - add call's command |


## License

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.2060</groupId>
<artifactId>service-agent-java-client</artifactId>
<version>2.0.8</version>
<version>2.0.9</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,21 @@
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

import lombok.Getter;
import lombok.Setter;

@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Setter
@Getter
public class ProfileMessage extends BaseMessage {

private static final long serialVersionUID = 7632455409300337368L;

private String displayName;
private String displayImageUrl;
private String displayIconUrl;
private String description;
private String preferredLanguage;

public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getDisplayImageUrl() {
return displayImageUrl;
}
public void setDisplayImageUrl(String displayImageUrl) {
this.displayImageUrl = displayImageUrl;
}

public String getDisplayIconUrl() {
return displayIconUrl;
}

public void setDisplayIconUrl(String displayIconUrl) {
this.displayIconUrl = displayIconUrl;
}
}

0 comments on commit 63d65f3

Please sign in to comment.