com.genexus.util.GXQueueMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxclassR Show documentation
Show all versions of gxclassR Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.util;
public class GXQueueMessage {
String text;
int priority;
String correlationId;
String messageId;
GXProperties properties;
public GXQueueMessage() {
priority = 4;
}
public String getText()
{
return text;
}
public void setText(String text)
{
this.text = text;
}
public int getPriority()
{
return priority;
}
public void setPriority(int priority)
{
this.priority = priority;
}
public String getCorrelationId()
{
return correlationId;
}
public void setCorrelationId(String correlationId)
{
this.correlationId = correlationId;
}
public String getMessageID()
{
return messageId;
}
public void setMessageID(String messageId)
{
this.messageId = messageId;
}
public GXProperties getProperties()
{
return properties;
}
public void setProperties(GXProperties properties)
{
this.properties = properties;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy