All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.seeq.model.PluginOutputV1 Maven / Gradle / Ivy
/*
* Seeq REST API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 60.1.3-v202304250417
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.seeq.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.seeq.model.IdentityPreviewV1;
import com.seeq.model.PermissionsV1;
import io.swagger.v3.oas.annotations.media.Schema;
/**
* The list of plugins
*/
@Schema(description = "The list of plugins")
public class PluginOutputV1 {
@JsonProperty("category")
private String category = null;
@JsonProperty("description")
private String description = null;
@JsonProperty("effectivePermissions")
private PermissionsV1 effectivePermissions = null;
@JsonProperty("entryPoint")
private String entryPoint = null;
@JsonProperty("host")
private Object host = null;
@JsonProperty("icon")
private String icon = null;
@JsonProperty("id")
private String id = null;
@JsonProperty("identifier")
private String identifier = null;
@JsonProperty("inDevelopment")
private Boolean inDevelopment = null;
@JsonProperty("installer")
private IdentityPreviewV1 installer = null;
@JsonProperty("isArchived")
private Boolean isArchived = false;
@JsonProperty("isRedacted")
private Boolean isRedacted = false;
@JsonProperty("name")
private String name = null;
@JsonProperty("options")
private Object options = null;
@JsonProperty("statusMessage")
private String statusMessage = null;
@JsonProperty("translationKey")
private String translationKey = null;
@JsonProperty("type")
private String type = null;
@JsonProperty("version")
private String version = null;
public PluginOutputV1 category(String category) {
this.category = category;
return this;
}
/**
* The plugin category (e.g. \"DisplayPane\", \"ToolPane\")
* @return category
**/
@Schema(description = "The plugin category (e.g. \"DisplayPane\", \"ToolPane\")")
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public PluginOutputV1 description(String description) {
this.description = description;
return this;
}
/**
* Clarifying information or other plain language description of this item
* @return description
**/
@Schema(description = "Clarifying information or other plain language description of this item")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public PluginOutputV1 effectivePermissions(PermissionsV1 effectivePermissions) {
this.effectivePermissions = effectivePermissions;
return this;
}
/**
* Get effectivePermissions
* @return effectivePermissions
**/
@Schema(description = "")
public PermissionsV1 getEffectivePermissions() {
return effectivePermissions;
}
public void setEffectivePermissions(PermissionsV1 effectivePermissions) {
this.effectivePermissions = effectivePermissions;
}
public PluginOutputV1 entryPoint(String entryPoint) {
this.entryPoint = entryPoint;
return this;
}
/**
* The relative path to the plugin entry point (e.g. \"myfolder/index.html \")
* @return entryPoint
**/
@Schema(description = "The relative path to the plugin entry point (e.g. \"myfolder/index.html \")")
public String getEntryPoint() {
return entryPoint;
}
public void setEntryPoint(String entryPoint) {
this.entryPoint = entryPoint;
}
public PluginOutputV1 host(Object host) {
this.host = host;
return this;
}
/**
* Plugin host configuration settings
* @return host
**/
@Schema(description = "Plugin host configuration settings")
public Object getHost() {
return host;
}
public void setHost(Object host) {
this.host = host;
}
public PluginOutputV1 icon(String icon) {
this.icon = icon;
return this;
}
/**
* The plugin icon (e.g. \"fa fa-wrench\")
* @return icon
**/
@Schema(description = "The plugin icon (e.g. \"fa fa-wrench\")")
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public PluginOutputV1 id(String id) {
this.id = id;
return this;
}
/**
* The ID that can be used to interact with the item
* @return id
**/
@Schema(required = true, description = "The ID that can be used to interact with the item")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public PluginOutputV1 identifier(String identifier) {
this.identifier = identifier;
return this;
}
/**
* The plugin identifier (e.g. \"com.seeq.samplePlugin\")
* @return identifier
**/
@Schema(description = "The plugin identifier (e.g. \"com.seeq.samplePlugin\")")
public String getIdentifier() {
return identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public PluginOutputV1 inDevelopment(Boolean inDevelopment) {
this.inDevelopment = inDevelopment;
return this;
}
/**
* Whether this item is in Development Mode, meaning that it is not allowed to be shared with any other users
* @return inDevelopment
**/
@Schema(description = "Whether this item is in Development Mode, meaning that it is not allowed to be shared with any other users")
public Boolean getInDevelopment() {
return inDevelopment;
}
public void setInDevelopment(Boolean inDevelopment) {
this.inDevelopment = inDevelopment;
}
public PluginOutputV1 installer(IdentityPreviewV1 installer) {
this.installer = installer;
return this;
}
/**
* Get installer
* @return installer
**/
@Schema(description = "")
public IdentityPreviewV1 getInstaller() {
return installer;
}
public void setInstaller(IdentityPreviewV1 installer) {
this.installer = installer;
}
public PluginOutputV1 isArchived(Boolean isArchived) {
this.isArchived = isArchived;
return this;
}
/**
* Whether item is archived
* @return isArchived
**/
@Schema(description = "Whether item is archived")
public Boolean getIsArchived() {
return isArchived;
}
public void setIsArchived(Boolean isArchived) {
this.isArchived = isArchived;
}
public PluginOutputV1 isRedacted(Boolean isRedacted) {
this.isRedacted = isRedacted;
return this;
}
/**
* Whether item is redacted
* @return isRedacted
**/
@Schema(description = "Whether item is redacted")
public Boolean getIsRedacted() {
return isRedacted;
}
public void setIsRedacted(Boolean isRedacted) {
this.isRedacted = isRedacted;
}
public PluginOutputV1 name(String name) {
this.name = name;
return this;
}
/**
* The human readable name
* @return name
**/
@Schema(required = true, description = "The human readable name")
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public PluginOutputV1 options(Object options) {
this.options = options;
return this;
}
/**
* Plugin-specific configuration settings
* @return options
**/
@Schema(description = "Plugin-specific configuration settings")
public Object getOptions() {
return options;
}
public void setOptions(Object options) {
this.options = options;
}
public PluginOutputV1 statusMessage(String statusMessage) {
this.statusMessage = statusMessage;
return this;
}
/**
* A plain language status message with information about any issues that may have been encountered during an operation
* @return statusMessage
**/
@Schema(description = "A plain language status message with information about any issues that may have been encountered during an operation")
public String getStatusMessage() {
return statusMessage;
}
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
public PluginOutputV1 translationKey(String translationKey) {
this.translationKey = translationKey;
return this;
}
/**
* The item's translation key, if any
* @return translationKey
**/
@Schema(description = "The item's translation key, if any")
public String getTranslationKey() {
return translationKey;
}
public void setTranslationKey(String translationKey) {
this.translationKey = translationKey;
}
public PluginOutputV1 type(String type) {
this.type = type;
return this;
}
/**
* The type of the item
* @return type
**/
@Schema(required = true, description = "The type of the item")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public PluginOutputV1 version(String version) {
this.version = version;
return this;
}
/**
* The plugin version (e.g. \"1.0.0\")
* @return version
**/
@Schema(description = "The plugin version (e.g. \"1.0.0\")")
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PluginOutputV1 pluginOutputV1 = (PluginOutputV1) o;
return Objects.equals(this.category, pluginOutputV1.category) &&
Objects.equals(this.description, pluginOutputV1.description) &&
Objects.equals(this.effectivePermissions, pluginOutputV1.effectivePermissions) &&
Objects.equals(this.entryPoint, pluginOutputV1.entryPoint) &&
Objects.equals(this.host, pluginOutputV1.host) &&
Objects.equals(this.icon, pluginOutputV1.icon) &&
Objects.equals(this.id, pluginOutputV1.id) &&
Objects.equals(this.identifier, pluginOutputV1.identifier) &&
Objects.equals(this.inDevelopment, pluginOutputV1.inDevelopment) &&
Objects.equals(this.installer, pluginOutputV1.installer) &&
Objects.equals(this.isArchived, pluginOutputV1.isArchived) &&
Objects.equals(this.isRedacted, pluginOutputV1.isRedacted) &&
Objects.equals(this.name, pluginOutputV1.name) &&
Objects.equals(this.options, pluginOutputV1.options) &&
Objects.equals(this.statusMessage, pluginOutputV1.statusMessage) &&
Objects.equals(this.translationKey, pluginOutputV1.translationKey) &&
Objects.equals(this.type, pluginOutputV1.type) &&
Objects.equals(this.version, pluginOutputV1.version);
}
@Override
public int hashCode() {
return Objects.hash(category, description, effectivePermissions, entryPoint, host, icon, id, identifier, inDevelopment, installer, isArchived, isRedacted, name, options, statusMessage, translationKey, type, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PluginOutputV1 {\n");
sb.append(" category: ").append(toIndentedString(category)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" effectivePermissions: ").append(toIndentedString(effectivePermissions)).append("\n");
sb.append(" entryPoint: ").append(toIndentedString(entryPoint)).append("\n");
sb.append(" host: ").append(toIndentedString(host)).append("\n");
sb.append(" icon: ").append(toIndentedString(icon)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" identifier: ").append(toIndentedString(identifier)).append("\n");
sb.append(" inDevelopment: ").append(toIndentedString(inDevelopment)).append("\n");
sb.append(" installer: ").append(toIndentedString(installer)).append("\n");
sb.append(" isArchived: ").append(toIndentedString(isArchived)).append("\n");
sb.append(" isRedacted: ").append(toIndentedString(isRedacted)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" options: ").append(toIndentedString(options)).append("\n");
sb.append(" statusMessage: ").append(toIndentedString(statusMessage)).append("\n");
sb.append(" translationKey: ").append(toIndentedString(translationKey)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}