-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from yuu-nkjm/develop
Modify sorm api
- Loading branch information
Showing
89 changed files
with
945 additions
and
2,505 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.nkjmlab.sorm4j; | ||
|
||
public interface OrmTransaction extends OrmConnection { | ||
|
||
/** | ||
* ALWAYS rollback before closing the connection. If everything is successful, the rollback will | ||
* have no effect. | ||
*/ | ||
@Override | ||
void close(); | ||
|
||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.nkjmlab.sorm4j; | ||
|
||
public interface TypedOrmTransaction<T> extends TypedOrmConnection<T> { | ||
|
||
|
||
/** | ||
* ALWAYS rollback before closing the connection. If everything is successful, the rollback will | ||
* have no effect. | ||
*/ | ||
@Override | ||
void close(); | ||
} |
14 changes: 0 additions & 14 deletions
14
src/main/java/org/nkjmlab/sorm4j/annotation/package-info.java
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
<html><body> | ||
<p> | ||
Provides annotation for object relation mapping. | ||
</p> | ||
</body></html> |
Oops, something went wrong.