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

com.aeontronix.anypointsdk.accessmanagement.ConnectedAppData Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta35
Show newest version
/*
 * Copyright (c) 2023. Aeontronix Inc
 */

package com.aeontronix.anypointsdk.accessmanagement;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class ConnectedAppData {
    @JsonProperty("audience")
    private String audience;

    @JsonProperty("client_uri")
    private String clientUri;

    @JsonProperty("grant_types")
    private List grantTypes;

    @JsonProperty("owner_user_id")
    private String ownerUserId;

    @JsonProperty("redirect_uris")
    private List redirectUris;

    @JsonProperty("cert_expiry")
    private Object certExpiry;

    @JsonProperty("client_id")
    private String clientId;

    @JsonProperty("enabled")
    private boolean enabled;

    @JsonProperty("public_keys")
    private List publicKeys;

    @JsonProperty("owner_org_id")
    private String ownerOrgId;

    @JsonProperty("client_secret")
    private String clientSecret;

    @JsonProperty("scopes")
    private List scopes;

    @JsonProperty("tos_uri")
    private Object tosUri;

    @JsonProperty("client_name")
    private String clientName;

    @JsonProperty("policy_uri")
    private Object policyUri;

    public void setAudience(String audience) {
        this.audience = audience;
    }

    public String getAudience() {
        return audience;
    }

    public void setClientUri(String clientUri) {
        this.clientUri = clientUri;
    }

    public String getClientUri() {
        return clientUri;
    }

    public void setGrantTypes(List grantTypes) {
        this.grantTypes = grantTypes;
    }

    public List getGrantTypes() {
        return grantTypes;
    }

    public void setOwnerUserId(String ownerUserId) {
        this.ownerUserId = ownerUserId;
    }

    public String getOwnerUserId() {
        return ownerUserId;
    }

    public void setRedirectUris(List redirectUris) {
        this.redirectUris = redirectUris;
    }

    public List getRedirectUris() {
        return redirectUris;
    }

    public void setCertExpiry(Object certExpiry) {
        this.certExpiry = certExpiry;
    }

    public Object getCertExpiry() {
        return certExpiry;
    }

    public void setClientId(String clientId) {
        this.clientId = clientId;
    }

    public String getClientId() {
        return clientId;
    }

    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }

    public boolean isEnabled() {
        return enabled;
    }

    public void setPublicKeys(List publicKeys) {
        this.publicKeys = publicKeys;
    }

    public List getPublicKeys() {
        return publicKeys;
    }

    public void setOwnerOrgId(String ownerOrgId) {
        this.ownerOrgId = ownerOrgId;
    }

    public String getOwnerOrgId() {
        return ownerOrgId;
    }

    public void setClientSecret(String clientSecret) {
        this.clientSecret = clientSecret;
    }

    public String getClientSecret() {
        return clientSecret;
    }

    public void setScopes(List scopes) {
        this.scopes = scopes;
    }

    public List getScopes() {
        return scopes;
    }

    public void setTosUri(Object tosUri) {
        this.tosUri = tosUri;
    }

    public Object getTosUri() {
        return tosUri;
    }

    public void setClientName(String clientName) {
        this.clientName = clientName;
    }

    public String getClientName() {
        return clientName;
    }

    public void setPolicyUri(Object policyUri) {
        this.policyUri = policyUri;
    }

    public Object getPolicyUri() {
        return policyUri;
    }
}