Skip to content

Commit

Permalink
8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PureCloud Jenkins committed Jun 22, 2021
1 parent 43299f9 commit d050427
Show file tree
Hide file tree
Showing 224 changed files with 973 additions and 969 deletions.
2 changes: 1 addition & 1 deletion build/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.mypurecloud'
version = '7.2.1'
version = '8.0.0'

buildscript {
repositories {
Expand Down
4 changes: 2 additions & 2 deletions build/docs/WebChatMemberInfoEntityList.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ ispreview: true
| **pageNumber** | **Integer** | | [optional] |
| **total** | **Long** | | [optional] |
| **firstUri** | **String** | | [optional] |
| **selfUri** | **String** | | [optional] |
| **nextUri** | **String** | | [optional] |
| **previousUri** | **String** | | [optional] |
| **lastUri** | **String** | | [optional] |
| **selfUri** | **String** | | [optional] |
| **nextUri** | **String** | | [optional] |
| **pageCount** | **Integer** | | [optional] |
{: class="table table-striped"}

Expand Down
6 changes: 4 additions & 2 deletions build/docs/releaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Platform API version: 4770
Platform API version: 4784


Switching guava dependency from Android to JRE
# Release notes

* Forcing a major release to ensure SDKs align with API definition

# Major Changes (0 changes)

Expand Down
2 changes: 1 addition & 1 deletion build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>purecloud-guest-chat-client</artifactId>
<packaging>jar</packaging>
<name>purecloud-guest-chat-client</name>
<version>7.2.1</version>
<version>8.0.0</version>
<description>A Java package to interface with the PureCloud Platform API Guest Chat APIs</description>
<url>https://developer.mypurecloud.com/api/rest/client-libraries/java-guest/</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ public static ApiClient defaultClient() {
private Builder(ConnectorProperties properties) {
this.properties = (properties != null) ? properties.copy() : new ConnectorProperties();
withUserAgent(DEFAULT_USER_AGENT);
withDefaultHeader("purecloud-sdk", "7.2.1");
withDefaultHeader("purecloud-sdk", "8.0.0");
}

public Builder withDefaultHeader(String header, String value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ public class WebChatMemberInfoEntityList implements Serializable, PagedResource
private Integer pageNumber = null;
private Long total = null;
private String firstUri = null;
private String selfUri = null;
private String nextUri = null;
private String previousUri = null;
private String lastUri = null;
private String selfUri = null;
private String nextUri = null;
private Integer pageCount = null;


Expand Down Expand Up @@ -123,69 +123,69 @@ public void setFirstUri(String firstUri) {

/**
**/
public WebChatMemberInfoEntityList selfUri(String selfUri) {
this.selfUri = selfUri;
public WebChatMemberInfoEntityList previousUri(String previousUri) {
this.previousUri = previousUri;
return this;
}

@ApiModelProperty(example = "null", value = "")
@JsonProperty("selfUri")
public String getSelfUri() {
return selfUri;
@JsonProperty("previousUri")
public String getPreviousUri() {
return previousUri;
}
public void setSelfUri(String selfUri) {
this.selfUri = selfUri;
public void setPreviousUri(String previousUri) {
this.previousUri = previousUri;
}


/**
**/
public WebChatMemberInfoEntityList nextUri(String nextUri) {
this.nextUri = nextUri;
public WebChatMemberInfoEntityList lastUri(String lastUri) {
this.lastUri = lastUri;
return this;
}

@ApiModelProperty(example = "null", value = "")
@JsonProperty("nextUri")
public String getNextUri() {
return nextUri;
@JsonProperty("lastUri")
public String getLastUri() {
return lastUri;
}
public void setNextUri(String nextUri) {
this.nextUri = nextUri;
public void setLastUri(String lastUri) {
this.lastUri = lastUri;
}


/**
**/
public WebChatMemberInfoEntityList previousUri(String previousUri) {
this.previousUri = previousUri;
public WebChatMemberInfoEntityList selfUri(String selfUri) {
this.selfUri = selfUri;
return this;
}

@ApiModelProperty(example = "null", value = "")
@JsonProperty("previousUri")
public String getPreviousUri() {
return previousUri;
@JsonProperty("selfUri")
public String getSelfUri() {
return selfUri;
}
public void setPreviousUri(String previousUri) {
this.previousUri = previousUri;
public void setSelfUri(String selfUri) {
this.selfUri = selfUri;
}


/**
**/
public WebChatMemberInfoEntityList lastUri(String lastUri) {
this.lastUri = lastUri;
public WebChatMemberInfoEntityList nextUri(String nextUri) {
this.nextUri = nextUri;
return this;
}

@ApiModelProperty(example = "null", value = "")
@JsonProperty("lastUri")
public String getLastUri() {
return lastUri;
@JsonProperty("nextUri")
public String getNextUri() {
return nextUri;
}
public void setLastUri(String lastUri) {
this.lastUri = lastUri;
public void setNextUri(String nextUri) {
this.nextUri = nextUri;
}


Expand Down Expand Up @@ -221,16 +221,16 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.pageNumber, webChatMemberInfoEntityList.pageNumber) &&
Objects.equals(this.total, webChatMemberInfoEntityList.total) &&
Objects.equals(this.firstUri, webChatMemberInfoEntityList.firstUri) &&
Objects.equals(this.selfUri, webChatMemberInfoEntityList.selfUri) &&
Objects.equals(this.nextUri, webChatMemberInfoEntityList.nextUri) &&
Objects.equals(this.previousUri, webChatMemberInfoEntityList.previousUri) &&
Objects.equals(this.lastUri, webChatMemberInfoEntityList.lastUri) &&
Objects.equals(this.selfUri, webChatMemberInfoEntityList.selfUri) &&
Objects.equals(this.nextUri, webChatMemberInfoEntityList.nextUri) &&
Objects.equals(this.pageCount, webChatMemberInfoEntityList.pageCount);
}

@Override
public int hashCode() {
return Objects.hash(entities, pageSize, pageNumber, total, firstUri, selfUri, nextUri, previousUri, lastUri, pageCount);
return Objects.hash(entities, pageSize, pageNumber, total, firstUri, previousUri, lastUri, selfUri, nextUri, pageCount);
}

@Override
Expand All @@ -243,10 +243,10 @@ public String toString() {
sb.append(" pageNumber: ").append(toIndentedString(pageNumber)).append("\n");
sb.append(" total: ").append(toIndentedString(total)).append("\n");
sb.append(" firstUri: ").append(toIndentedString(firstUri)).append("\n");
sb.append(" selfUri: ").append(toIndentedString(selfUri)).append("\n");
sb.append(" nextUri: ").append(toIndentedString(nextUri)).append("\n");
sb.append(" previousUri: ").append(toIndentedString(previousUri)).append("\n");
sb.append(" lastUri: ").append(toIndentedString(lastUri)).append("\n");
sb.append(" selfUri: ").append(toIndentedString(selfUri)).append("\n");
sb.append(" nextUri: ").append(toIndentedString(nextUri)).append("\n");
sb.append(" pageCount: ").append(toIndentedString(pageCount)).append("\n");
sb.append("}");
return sb.toString();
Expand Down
6 changes: 3 additions & 3 deletions build/target/apidocs/allclasses-frame.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:44 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:15 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>All Classes (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
Expand Down
6 changes: 3 additions & 3 deletions build/target/apidocs/allclasses-noframe.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:44 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:15 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>All Classes (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>All Classes (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:43 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:14 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiClient.Builder (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>ApiClient.Builder (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiClient.Builder (purecloud-guest-chat-client 7.2.1 API)";
parent.document.title="ApiClient.Builder (purecloud-guest-chat-client 8.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:43 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:14 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiClient.LoggingConfiguration (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>ApiClient.LoggingConfiguration (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiClient.LoggingConfiguration (purecloud-guest-chat-client 7.2.1 API)";
parent.document.title="ApiClient.LoggingConfiguration (purecloud-guest-chat-client 8.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:43 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:14 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiClient (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>ApiClient (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiClient (purecloud-guest-chat-client 7.2.1 API)";
parent.document.title="ApiClient (purecloud-guest-chat-client 8.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:43 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:14 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiDateFormat (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>ApiDateFormat (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiDateFormat (purecloud-guest-chat-client 7.2.1 API)";
parent.document.title="ApiDateFormat (purecloud-guest-chat-client 8.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:43 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:14 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiException (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>ApiException (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiException (purecloud-guest-chat-client 7.2.1 API)";
parent.document.title="ApiException (purecloud-guest-chat-client 8.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:43 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:14 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiRequest (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>ApiRequest (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiRequest (purecloud-guest-chat-client 7.2.1 API)";
parent.document.title="ApiRequest (purecloud-guest-chat-client 8.0.0 API)";
}
}
catch(err) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Wed Jun 16 08:01:43 UTC 2021 -->
<!-- Generated by javadoc (1.8.0_222) on Tue Jun 22 17:29:14 UTC 2021 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ApiRequestBuilder (purecloud-guest-chat-client 7.2.1 API)</title>
<meta name="date" content="2021-06-16">
<title>ApiRequestBuilder (purecloud-guest-chat-client 8.0.0 API)</title>
<meta name="date" content="2021-06-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="ApiRequestBuilder (purecloud-guest-chat-client 7.2.1 API)";
parent.document.title="ApiRequestBuilder (purecloud-guest-chat-client 8.0.0 API)";
}
}
catch(err) {
Expand Down
Loading

0 comments on commit d050427

Please sign in to comment.