The base implementation checks if the schema is null, and if so, generate a generic one. This is useful/necessary before persistence, to avoid the situtation of null schemas being persisted.
()
| 1142 | * before persistence, to avoid the situtation of null schemas being persisted. |
| 1143 | */ |
| 1144 | @Override |
| 1145 | public void beforePersisting() throws DDFException { |
| 1146 | if (this.getSchema() == null) this.getSchemaHandler().setSchema(this.getSchemaHandler().generateSchema()); |
| 1147 | } |
| 1148 | |
| 1149 | @Override |
| 1150 | public void afterPersisting() { |
nothing calls this directly
no test coverage detected