Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add defaultQueue update for many queue in only class #4

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.2060</groupId>
<artifactId>service-agent-java-client</artifactId>
<version>2.0.2</version>
<version>2.0.3</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>17</maven.compiler.source>
Expand Down Expand Up @@ -111,7 +111,7 @@
<goal>sign</goal>
</goals>
<configuration>
<keyname>58BA9C734D6C15DD33C63ACC086B1A209C4D922A</keyname>
<keyname>A0E745610E1F1E571F106FB488B0D4FF7C070E5B</keyname>
</configuration>
</execution>
</executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ public void setDebug(Boolean debug) {
this.debug = debug;
}

public void setDefaultQueue(Queue queue) {
this.defaultQueue = queue;
}

@Override
public void sendMessage(BaseMessage message) throws Exception {
// TODO Auto-generated method stub
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package io.twentysixty.sa.client.jms;

import jakarta.jms.ObjectMessage;

import io.twentysixty.sa.client.model.message.BaseMessage;


Expand Down
Loading