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

com.aliyun.openservices.log.response.GetResourceResponse Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.response;

import com.aliyun.openservices.log.common.Resource;

import java.util.Map;

public class GetResourceResponse extends Response {

    private Resource resource;
    public GetResourceResponse(Map headers, Resource resource) {
        super(headers);
        this.resource = resource;
    }

    public Resource getResource() {
        return resource;
    }

    public void setResource(Resource resource) {
        this.resource = resource;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy