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

com.solace.spring.cloud.stream.binder.properties.SolaceBindingProperties Maven / Gradle / Ivy

The newest version!
package com.solace.spring.cloud.stream.binder.properties;

import org.springframework.cloud.stream.binder.BinderSpecificPropertiesProvider;

public class SolaceBindingProperties implements BinderSpecificPropertiesProvider {

    private SolaceConsumerProperties consumer = new SolaceConsumerProperties();
    private SolaceProducerProperties producer = new SolaceProducerProperties();

    @Override
    public SolaceConsumerProperties getConsumer() {
        return consumer;
    }

    public void setConsumer(SolaceConsumerProperties consumer) {
        this.consumer = consumer;
    }

    @Override
    public SolaceProducerProperties getProducer() {
        return producer;
    }

    public void setProducer(SolaceProducerProperties producer) {
        this.producer = producer;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy