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

com.sap.cloud.mt.subscription.json.SidecarSubscribeCallBackPayload Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
/******************************************************************************
 * © 2020 SAP SE or an SAP affiliate company. All rights reserved.            *
 ******************************************************************************/

package com.sap.cloud.mt.subscription.json;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * If an asynchronous subscribe is performed, the Java application is called back. The
 * payload contains information whether sidecar could subscribe the tenant.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class SidecarSubscribeCallBackPayload {
    // SUCCEEDED/FAILED
    public String status;//NOSONAR
    public String message;//NOSONAR
    //subscriptionUrl determined by sidecar. Is empty in the Java case!
    public String subscriptionUrl;//NOSONAR
    //the relative url of the saas registry
    public String saasCallbackUrl;//NOSONAR
    public String tenantId;//NOSONAR
    //the payload received by sidecar
    public SidecarSubscriptionPayload saasRequestPayload;//NOSONAR
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy