This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#115 - factors out a new outbox module, and have 'jdo' module depend …
…upon it. Also adds implementations of InteractionExecutionRepository and PublishedObjectsRepository for OutboxEvent.
- Loading branch information
1 parent
230cf5a
commit 3417c63
Showing
44 changed files
with
681 additions
and
13 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
11 changes: 10 additions & 1 deletion
11
...impl/jdo/src/main/java/org/isisaddons/module/publishmq/dom/jdo/PublishMqSpiJdoModule.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
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
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
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
...mq/impl/mq/src/main/java/org/isisaddons/module/publishmq/dom/mq/PublishMqSpiMqModule.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.isisaddons.module.publishmq.dom.mq; | ||
|
||
import java.util.Set; | ||
|
||
import javax.xml.bind.annotation.XmlRootElement; | ||
|
||
import com.google.common.collect.Sets; | ||
|
||
import org.apache.isis.applib.Module; | ||
import org.apache.isis.applib.ModuleAbstract; | ||
import org.isisaddons.module.publishmq.dom.servicespi.PublishMqSpiServicesModule; | ||
|
||
@XmlRootElement(name = "module") | ||
public class PublishMqSpiMqModule extends ModuleAbstract { | ||
|
||
@Override public Set<Module> getDependencies() { | ||
return Sets.newHashSet(new PublishMqSpiServicesModule()); | ||
} | ||
|
||
|
||
} |
22 changes: 22 additions & 0 deletions
22
modules/spi/publishmq/impl/outbox/logging-dn-enhance.properties
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,22 @@ | ||
|
||
# Basic logging goes to "datanucleus.log" | ||
log4j.appender.A1=org.apache.log4j.FileAppender | ||
log4j.appender.A1.File=datanucleus.log | ||
log4j.appender.A1.layout=org.apache.log4j.PatternLayout | ||
log4j.appender.A1.layout.ConversionPattern=%d{HH:mm:ss,SSS} (%t) %-5p [%c] - %m%n | ||
#log4j.appender.A1.Threshold=INFO | ||
|
||
# Categories | ||
# Each category can be set to a "level", and to direct to an appender | ||
|
||
# Default to DEBUG level for all DataNucleus categories | ||
log4j.logger.DataNucleus = DEBUG, A1 | ||
|
||
log4j.category.com.mchange.v2.c3p0=INFO, A1 | ||
log4j.category.com.mchange.v2.resourcepool=INFO, A1 | ||
log4j.category.org.logicalcobwebs.proxool=INFO,A1 | ||
|
||
|
||
# Hbase libs logging | ||
log4j.category.org.apache.hadoop=INFO,A1 | ||
log4j.category.org.apache.zookeeper=INFO,A1 |
Oops, something went wrong.