This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway.git
The following commit(s) were added to refs/heads/master by this push:
new c336b576db CAUSEWAY-3713: change weaving field type from boolean to
String
c336b576db is described below
commit c336b576db798bf5a94bf8b572f69efe8c0bf239
Author: andi-huber <[email protected]>
AuthorDate: Tue Apr 2 17:42:04 2024 +0200
CAUSEWAY-3713: change weaving field type from boolean to String
- this class exists only for code-assit (IDE)
---
.../org/apache/causeway/core/config/EclipselinkConfiguration.java | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git
a/core/config/src/main/java/org/apache/causeway/core/config/EclipselinkConfiguration.java
b/core/config/src/main/java/org/apache/causeway/core/config/EclipselinkConfiguration.java
index 1717bccd1c..e597e39def 100644
---
a/core/config/src/main/java/org/apache/causeway/core/config/EclipselinkConfiguration.java
+++
b/core/config/src/main/java/org/apache/causeway/core/config/EclipselinkConfiguration.java
@@ -34,9 +34,15 @@ import lombok.Data;
public class EclipselinkConfiguration {
/**
+ * Options are
+ * <ul>
+ * <li>true: Weave the entity classes dynamically.</li>
+ * <li>false: Do not weave the entity classes.</li>
+ * <li>static: Weave the entity classes statically.</li>
+ * </ul>
* @see <a
href="https://www.eclipse.org/eclipselink/documentation/2.7/jpa/extensions/persistenceproperties_ref.htm#weaving">eclipse.weaving</a>
*/
- private boolean weaving = false;
+ private String weaving = "false";
@ConfigurationProperties("eclipselink.weaving")
@Validated