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

com.sumologic.client.collectors.model.UpdateCollectorResponse Maven / Gradle / Ivy

package com.sumologic.client.collectors.model;

import com.sumologic.client.model.SumoEntity;
import com.sumologic.client.model.SumoEntityResponse;

/**
 * A response containing the updated collector.
 *
 * @author Jeffrey Wang
 */
public class UpdateCollectorResponse extends SumoEntityResponse {

    private Collector collector;

    /**
     * Returns the collector.
     *
     * @return The collector.
     */
    public Collector getCollector() {
        return collector;
    }

    @Override
    protected SumoEntity getEntity() {
        return collector;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy