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

org.hawkular.cmdgw.api.AddJdbcDriverResponse Maven / Gradle / Ivy


package org.hawkular.cmdgw.api;

import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * Results of an Add Driver request.
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
    "driverName"
})
public class AddJdbcDriverResponse
    extends ResourcePathResponse
{

    /**
     * 
     * (Required)
     * 
     */
    @JsonProperty("driverName")
    private String driverName;

    /**
     * 
     * (Required)
     * 
     * @return
     *     The driverName
     */
    @JsonProperty("driverName")
    public String getDriverName() {
        return driverName;
    }

    /**
     * 
     * (Required)
     * 
     * @param driverName
     *     The driverName
     */
    @JsonProperty("driverName")
    public void setDriverName(String driverName) {
        this.driverName = driverName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy