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

com.cloudbees.api.ServiceResourceUnBindResponse Maven / Gradle / Ivy

/*
 * Copyright 2010-2011, CloudBees Inc.
 */

package com.cloudbees.api;

import com.thoughtworks.xstream.annotations.XStreamAlias;

@XStreamAlias("ServiceResourceUnBindResponse")
public class ServiceResourceUnBindResponse {
    private String message;

    public ServiceResourceUnBindResponse() {
    }

    public ServiceResourceUnBindResponse(String message) {
        this.message = message;
    }

    public String getMessage() {
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy