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 - adds OutboxEvent and PublishedEventAbstract (as common supercl…
…ass with PublshedEvent)
- Loading branch information
1 parent
f9f4a28
commit c256c1e
Showing
3 changed files
with
240 additions
and
289 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...mq/impl/jdo/src/main/java/org/isisaddons/module/publishmq/dom/jdo/events/OutboxEvent.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,17 @@ | ||
package org.isisaddons.module.publishmq.dom.jdo.events; | ||
|
||
import org.apache.isis.applib.annotation.DomainObject; | ||
import org.apache.isis.applib.annotation.DomainObjectLayout; | ||
import org.apache.isis.applib.annotation.Editing; | ||
|
||
@javax.jdo.annotations.PersistenceCapable( | ||
schema = "isispublishmq", | ||
table="OutboxEvent") | ||
@DomainObject( | ||
editing = Editing.DISABLED, | ||
objectType = "isispublishmq.OutboxEvent" | ||
) | ||
@DomainObjectLayout(named = "Outbox Event") | ||
public class OutboxEvent extends PublishedEventAbstract { | ||
|
||
} |
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
Oops, something went wrong.