Class PersistedDestination
- java.lang.Object
-
- org.apache.activemq.artemis.jms.persistence.config.PersistedDestination
-
- All Implemented Interfaces:
EncodingSupport
public class PersistedDestination extends Object implements EncodingSupport
-
-
Constructor Summary
Constructors Constructor Description PersistedDestination()PersistedDestination(PersistedType type, String name)PersistedDestination(PersistedType type, String name, String selector, boolean durable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddecode(ActiveMQBuffer buffer)voidencode(ActiveMQBuffer buffer)intgetEncodeSize()longgetId()StringgetName()StringgetSelector()PersistedTypegetType()booleanisDurable()voidsetId(long id)
-
-
-
Constructor Detail
-
PersistedDestination
public PersistedDestination()
-
PersistedDestination
public PersistedDestination(PersistedType type, String name)
-
PersistedDestination
public PersistedDestination(PersistedType type, String name, String selector, boolean durable)
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
getName
public String getName()
-
getType
public PersistedType getType()
-
getSelector
public String getSelector()
-
isDurable
public boolean isDurable()
-
getEncodeSize
public int getEncodeSize()
- Specified by:
getEncodeSizein interfaceEncodingSupport
-
encode
public void encode(ActiveMQBuffer buffer)
- Specified by:
encodein interfaceEncodingSupport
-
decode
public void decode(ActiveMQBuffer buffer)
- Specified by:
decodein interfaceEncodingSupport
-
-