The according values in cluster.properties have to be removed. These are:
Projects have to update their dependencies:
<dependency> <groupId>org.wildfly.bom</groupId> <artifactId>wildfly-jakartaee8-with-tools</artifactId> <scope>import</scope> <type>pom</type> <version>26.1.0.Final</version> </dependency> <dependency> <groupId>org.wildfly</groupId> <artifactId>wildfly-spec-api</artifactId> <scope>provided</scope> <type>pom</type> <version>26.1.0.Final</version> </dependency>
Some expandable enumerations have new attributes or are improved, and the corresponding expanded classes in projects should be modified accordingly:
Remove references to the deprecated attribute activeOMT
Persisted the enum name, as used in APIs:
/** * @return the enum name of the charge type */ @Override @Column(name = "`chargeType`") public String getEnumName() { return name(); }
Persisted the enum name, as used in APIs:
@Override @Column(name = "`paymentName`", length = 100, nullable = false) public String getFieldName() { return this.name(); }
The groupRef
was not being persisted:
/** * @return the id of the payment method group */ @Override @Column( name = "`paymentGroupRef`" ) public Integer getPaymentGroupRef() { return ( paymentGroup == null ? null : paymentGroup.getId() ); }
The information provided in the Knowledge Base may not be applicable to all systems and situations. Intershop Communications will not be liable to any party for any direct or indirect damages resulting from the use of the Customer Support section of the Intershop Corporate Web site, including, without limitation, any lost profits, business interruption, loss of programs or other data on your information handling system.