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

org.cloudfoundry.client.v3.servicebrokers.Authentication Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
package org.cloudfoundry.client.v3.servicebrokers;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import java.util.Map;

@JsonSerialize
abstract class Authentication {

    @JsonProperty("credentials")
    abstract Map getCredentials();

    @JsonProperty("type")
    abstract String getType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy