All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.openfga.sdk.api.model.Metadata Maven / Gradle / Ivy

/*
 * OpenFGA
 * A high performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar.
 *
 * The version of the OpenAPI document: 1.x
 * Contact: [email protected]
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package dev.openfga.sdk.api.model;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.StringJoiner;

/**
 * Metadata
 */
@JsonPropertyOrder({Metadata.JSON_PROPERTY_RELATIONS, Metadata.JSON_PROPERTY_MODULE, Metadata.JSON_PROPERTY_SOURCE_INFO
})
public class Metadata {
    public static final String JSON_PROPERTY_RELATIONS = "relations";
    private Map relations = new HashMap<>();

    public static final String JSON_PROPERTY_MODULE = "module";
    private String module;

    public static final String JSON_PROPERTY_SOURCE_INFO = "source_info";
    private SourceInfo sourceInfo;

    public Metadata() {}

    public Metadata relations(Map relations) {
        this.relations = relations;
        return this;
    }

    public Metadata putRelationsItem(String key, RelationMetadata relationsItem) {
        if (this.relations == null) {
            this.relations = new HashMap<>();
        }
        this.relations.put(key, relationsItem);
        return this;
    }

    /**
     * Get relations
     * @return relations
     **/
    @javax.annotation.Nullable
    @JsonProperty(JSON_PROPERTY_RELATIONS)
    @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
    public Map getRelations() {
        return relations;
    }

    @JsonProperty(JSON_PROPERTY_RELATIONS)
    @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
    public void setRelations(Map relations) {
        this.relations = relations;
    }

    public Metadata module(String module) {
        this.module = module;
        return this;
    }

    /**
     * Get module
     * @return module
     **/
    @javax.annotation.Nullable
    @JsonProperty(JSON_PROPERTY_MODULE)
    @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
    public String getModule() {
        return module;
    }

    @JsonProperty(JSON_PROPERTY_MODULE)
    @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
    public void setModule(String module) {
        this.module = module;
    }

    public Metadata sourceInfo(SourceInfo sourceInfo) {
        this.sourceInfo = sourceInfo;
        return this;
    }

    /**
     * Get sourceInfo
     * @return sourceInfo
     **/
    @javax.annotation.Nullable
    @JsonProperty(JSON_PROPERTY_SOURCE_INFO)
    @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
    public SourceInfo getSourceInfo() {
        return sourceInfo;
    }

    @JsonProperty(JSON_PROPERTY_SOURCE_INFO)
    @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
    public void setSourceInfo(SourceInfo sourceInfo) {
        this.sourceInfo = sourceInfo;
    }

    /**
     * Return true if this Metadata object is equal to o.
     */
    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        Metadata metadata = (Metadata) o;
        return Objects.equals(this.relations, metadata.relations)
                && Objects.equals(this.module, metadata.module)
                && Objects.equals(this.sourceInfo, metadata.sourceInfo);
    }

    @Override
    public int hashCode() {
        return Objects.hash(relations, module, sourceInfo);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class Metadata {\n");
        sb.append("    relations: ").append(toIndentedString(relations)).append("\n");
        sb.append("    module: ").append(toIndentedString(module)).append("\n");
        sb.append("    sourceInfo: ").append(toIndentedString(sourceInfo)).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(Object o) {
        if (o == null) {
            return "null";
        }
        return o.toString().replace("\n", "\n    ");
    }

    /**
     * Convert the instance into URL query string.
     *
     * @return URL query string
     */
    public String toUrlQueryString() {
        return toUrlQueryString(null);
    }

    /**
     * Convert the instance into URL query string.
     *
     * @param prefix prefix of the query string
     * @return URL query string
     */
    public String toUrlQueryString(String prefix) {
        String suffix = "";
        String containerSuffix = "";
        String containerPrefix = "";
        if (prefix == null) {
            // style=form, explode=true, e.g. /pet?name=cat&type=manx
            prefix = "";
        } else {
            // deepObject style e.g. /pet?id[name]=cat&id[type]=manx
            prefix = prefix + "[";
            suffix = "]";
            containerSuffix = "]";
            containerPrefix = "[";
        }

        StringJoiner joiner = new StringJoiner("&");

        // add `relations` to the URL query string
        if (getRelations() != null) {
            for (String _key : getRelations().keySet()) {
                if (getRelations().get(_key) != null) {
                    joiner.add(getRelations()
                            .get(_key)
                            .toUrlQueryString(String.format(
                                    "%srelations%s%s",
                                    prefix,
                                    suffix,
                                    "".equals(suffix)
                                            ? ""
                                            : String.format("%s%d%s", containerPrefix, _key, containerSuffix))));
                }
            }
        }

        // add `module` to the URL query string
        if (getModule() != null) {
            joiner.add(String.format(
                    "%smodule%s=%s",
                    prefix,
                    suffix,
                    URLEncoder.encode(String.valueOf(getModule()), StandardCharsets.UTF_8)
                            .replaceAll("\\+", "%20")));
        }

        // add `source_info` to the URL query string
        if (getSourceInfo() != null) {
            joiner.add(getSourceInfo().toUrlQueryString(prefix + "source_info" + suffix));
        }

        return joiner.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy