is not current version
Last Version 3.3.5

nz.co.senanque:madura-objects 2.2.2

This is essentially a JAXB/XJC plugin that adds automatic validation to the generated Java classes. You define business objects in an XSD file, pass it through XJC and the plugin will add the validation code. It uses information in the XSD to pick up validation, and you can specify extensions to that in the XSD. The resulting Java classes check for validity when the setter is called and they reject attempts to set invalid values (this is a difference from other validation frameworks). The Java classes also expose a metadata interface to make it easy for UIs to generate, say, lists of options for a select box. The validation framework handles single field validation but you can inject a rule engine (or several) to handle cross field validation. But to any Java code the objects still look like ordinary Java beans. The surrounding application is unaware that they are anything different until they throw an exception. This makes it easy to use with frameworks that expect Java beans, and most of them do.

GroupId

GroupId

nz.co.senanque
ArtifactId

ArtifactId

madura-objects
Version

Version

2.2.2
Type

Type

jar

Download madura-objects 2.2.2


<!-- https://jarcasting.com/artifacts/nz.co.senanque/madura-objects/ -->
<dependency>
    <groupId>nz.co.senanque</groupId>
    <artifactId>madura-objects</artifactId>
    <version>2.2.2</version>
</dependency>
// https://jarcasting.com/artifacts/nz.co.senanque/madura-objects/
implementation 'nz.co.senanque:madura-objects:2.2.2'
// https://jarcasting.com/artifacts/nz.co.senanque/madura-objects/
implementation ("nz.co.senanque:madura-objects:2.2.2")
'nz.co.senanque:madura-objects:jar:2.2.2'
<dependency org="nz.co.senanque" name="madura-objects" rev="2.2.2">
  <artifact name="madura-objects" type="jar" />
</dependency>
@Grapes(
@Grab(group='nz.co.senanque', module='madura-objects', version='2.2.2')
)
libraryDependencies += "nz.co.senanque" % "madura-objects" % "2.2.2"
[nz.co.senanque/madura-objects "2.2.2"]