Annotation Type Table
-
@Retention(RUNTIME) @Target(FIELD) public @interface Table
Annotation used to reference a schema table linked to a Data Transfer Object (DTO) field of typeContentHolder.Usage:
public final class CityDTO { @Table( dataModel = "urn:ebx:module:cities-module:/WEB-INF/ebx/schemas/cities.xsd", tablePath = "/root/Department") public ContentHolder department; }See
SchemaLocationfor more information about EBX® specific URNs.- Since:
- 6.0.0
-
-
Element Detail
-
dataModel
String dataModel
The URN defining the location of the schema file.- See Also:
SchemaLocation.format()
-
-