* The app ID. *
*/ private String appId; /** ** The name of the backend environment. *
*/ private String backendEnvironmentName; /** ** If the request fails, this error is returned. *
*/ private String error; /** ** The resource configuration for this response object. *
*/ private BackendAPIResourceConfig resourceConfig; /** ** The name of this resource. *
*/ private String resourceName; /** ** The app ID. *
* * @param appId * The app ID. */ public void setAppId(String appId) { this.appId = appId; } /** ** The app ID. *
* * @return The app ID. */ public String getAppId() { return this.appId; } /** ** The app ID. *
* * @param appId * The app ID. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBackendAPIResult withAppId(String appId) { setAppId(appId); return this; } /** ** The name of the backend environment. *
* * @param backendEnvironmentName * The name of the backend environment. */ public void setBackendEnvironmentName(String backendEnvironmentName) { this.backendEnvironmentName = backendEnvironmentName; } /** ** The name of the backend environment. *
* * @return The name of the backend environment. */ public String getBackendEnvironmentName() { return this.backendEnvironmentName; } /** ** The name of the backend environment. *
* * @param backendEnvironmentName * The name of the backend environment. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBackendAPIResult withBackendEnvironmentName(String backendEnvironmentName) { setBackendEnvironmentName(backendEnvironmentName); return this; } /** ** If the request fails, this error is returned. *
* * @param error * If the request fails, this error is returned. */ public void setError(String error) { this.error = error; } /** ** If the request fails, this error is returned. *
* * @return If the request fails, this error is returned. */ public String getError() { return this.error; } /** ** If the request fails, this error is returned. *
* * @param error * If the request fails, this error is returned. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBackendAPIResult withError(String error) { setError(error); return this; } /** ** The resource configuration for this response object. *
* * @param resourceConfig * The resource configuration for this response object. */ public void setResourceConfig(BackendAPIResourceConfig resourceConfig) { this.resourceConfig = resourceConfig; } /** ** The resource configuration for this response object. *
* * @return The resource configuration for this response object. */ public BackendAPIResourceConfig getResourceConfig() { return this.resourceConfig; } /** ** The resource configuration for this response object. *
* * @param resourceConfig * The resource configuration for this response object. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBackendAPIResult withResourceConfig(BackendAPIResourceConfig resourceConfig) { setResourceConfig(resourceConfig); return this; } /** ** The name of this resource. *
* * @param resourceName * The name of this resource. */ public void setResourceName(String resourceName) { this.resourceName = resourceName; } /** ** The name of this resource. *
* * @return The name of this resource. */ public String getResourceName() { return this.resourceName; } /** ** The name of this resource. *
* * @param resourceName * The name of this resource. * @return Returns a reference to this object so that method calls can be chained together. */ public GetBackendAPIResult withResourceName(String resourceName) { setResourceName(resourceName); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAppId() != null) sb.append("AppId: ").append(getAppId()).append(","); if (getBackendEnvironmentName() != null) sb.append("BackendEnvironmentName: ").append(getBackendEnvironmentName()).append(","); if (getError() != null) sb.append("Error: ").append(getError()).append(","); if (getResourceConfig() != null) sb.append("ResourceConfig: ").append(getResourceConfig()).append(","); if (getResourceName() != null) sb.append("ResourceName: ").append(getResourceName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetBackendAPIResult == false) return false; GetBackendAPIResult other = (GetBackendAPIResult) obj; if (other.getAppId() == null ^ this.getAppId() == null) return false; if (other.getAppId() != null && other.getAppId().equals(this.getAppId()) == false) return false; if (other.getBackendEnvironmentName() == null ^ this.getBackendEnvironmentName() == null) return false; if (other.getBackendEnvironmentName() != null && other.getBackendEnvironmentName().equals(this.getBackendEnvironmentName()) == false) return false; if (other.getError() == null ^ this.getError() == null) return false; if (other.getError() != null && other.getError().equals(this.getError()) == false) return false; if (other.getResourceConfig() == null ^ this.getResourceConfig() == null) return false; if (other.getResourceConfig() != null && other.getResourceConfig().equals(this.getResourceConfig()) == false) return false; if (other.getResourceName() == null ^ this.getResourceName() == null) return false; if (other.getResourceName() != null && other.getResourceName().equals(this.getResourceName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAppId() == null) ? 0 : getAppId().hashCode()); hashCode = prime * hashCode + ((getBackendEnvironmentName() == null) ? 0 : getBackendEnvironmentName().hashCode()); hashCode = prime * hashCode + ((getError() == null) ? 0 : getError().hashCode()); hashCode = prime * hashCode + ((getResourceConfig() == null) ? 0 : getResourceConfig().hashCode()); hashCode = prime * hashCode + ((getResourceName() == null) ? 0 : getResourceName().hashCode()); return hashCode; } @Override public GetBackendAPIResult clone() { try { return (GetBackendAPIResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }