Skip to content

Commit

Permalink
small improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille committed Sep 22, 2024
1 parent 4c9700a commit b02db2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion bean/src/main/java/io/github/mmm/entity/bean/EntityBean.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public interface EntityBean extends WritableBean, Entity {
* // ...
* }
* </pre>
*
* For further details see {@code io.github.mmm.orm.naming.DbNamingStrategy}.
*/
public static final String META_KEY_TABLE = "table";

Expand All @@ -47,6 +49,8 @@ public interface EntityBean extends WritableBean, Entity {
* {@code @}{@link io.github.mmm.base.metainfo.MetaInfos MetaInfos}("column=DATE_OF_BIRTH")
* LocalDateProperty Birthday();
* </pre>
*
* For further details see {@code io.github.mmm.orm.naming.DbNamingStrategy}.
*/
public static final String META_KEY_COLUMN = "column";

Expand Down Expand Up @@ -75,5 +79,4 @@ default Class<?> getJavaClass() {

return WritableBean.super.getJavaClass();
}

}
2 changes: 1 addition & 1 deletion core/src/main/java/io/github/mmm/entity/id/FkMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Id toSource(Object id) {
/**
* @return the default {@link FkMapper}.
*/
public static FkMapper of() {
public static FkMapper get() {

return DEFAULT;
}
Expand Down

0 comments on commit b02db2e

Please sign in to comment.