Class JmsPropertiesBuilder
- java.lang.Object
-
- io.smallrye.reactive.messaging.jms.JmsPropertiesBuilder
-
public class JmsPropertiesBuilder extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JmsPropertiesBuilder.OutgoingJmsProperties
static class
JmsPropertiesBuilder.Property<T>
-
Constructor Summary
Constructors Constructor Description JmsPropertiesBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JmsProperties
build()
JmsPropertiesBuilder
with(String key, boolean value)
JmsPropertiesBuilder
with(String key, byte value)
JmsPropertiesBuilder
with(String key, double value)
JmsPropertiesBuilder
with(String key, float value)
JmsPropertiesBuilder
with(String key, int value)
JmsPropertiesBuilder
with(String key, long value)
JmsPropertiesBuilder
with(String key, short value)
JmsPropertiesBuilder
with(String key, String value)
JmsPropertiesBuilder
without(String key)
-
-
-
Method Detail
-
with
public JmsPropertiesBuilder with(String key, boolean value)
-
with
public JmsPropertiesBuilder with(String key, byte value)
-
with
public JmsPropertiesBuilder with(String key, short value)
-
with
public JmsPropertiesBuilder with(String key, int value)
-
with
public JmsPropertiesBuilder with(String key, long value)
-
with
public JmsPropertiesBuilder with(String key, float value)
-
with
public JmsPropertiesBuilder with(String key, double value)
-
with
public JmsPropertiesBuilder with(String key, String value)
-
without
public JmsPropertiesBuilder without(String key)
-
build
public JmsProperties build()
-
-