-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c3952c1
commit 77e6d6c
Showing
4 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
plugin/src/main/groovy/org/rmq4j/service/Rmq4jInsService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package org.rmq4j.service; | ||
|
||
public interface Rmq4jInsService { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
plugin/src/main/groovy/org/rmq4j/service/impl/Rmq4jInsServiceImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package org.rmq4j.service.impl; | ||
|
||
import org.rmq4j.service.Rmq4jInsService; | ||
import org.rmq4j.service.Rmq4jService; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Service; | ||
|
||
@SuppressWarnings({"FieldCanBeLocal", "DuplicatedCode"}) | ||
@Service | ||
public class Rmq4jInsServiceImpl implements Rmq4jInsService { | ||
protected static final Logger logger = LoggerFactory.getLogger(Rmq4jInsServiceImpl.class); | ||
|
||
protected final Rmq4jService rmq4jService; | ||
|
||
@Autowired | ||
public Rmq4jInsServiceImpl(Rmq4jService rmq4jService) { | ||
this.rmq4jService = rmq4jService; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters