Skip to content

Commit

Permalink
fix: update typing
Browse files Browse the repository at this point in the history
  • Loading branch information
dnlkoch committed Sep 2, 2023
1 parent 73632a7 commit 34bd0b1
Showing 1 changed file with 22 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
@EqualsAndHashCode(callSuper = false)
public class PropertyFormItemEditReferenceTableConfig extends PropertyFormItemEditConfig {

@Schema(
description = "Set the ID of the layer that should be referenced and where the features for the " +
"table should be loaded from.",
example = "1909",
requiredMode = Schema.RequiredMode.REQUIRED
)
private Long layerId;
// @Schema(
// description = "Set the ID of the layer that should be referenced and where the features for the " +
// "table should be loaded from.",
// example = "1909",
// requiredMode = Schema.RequiredMode.REQUIRED
// )
// private Long layerId;

@Schema(
description = "Set the property of the referenced layer (see layerId) that should be displayed in the " +
Expand All @@ -44,17 +44,22 @@ public class PropertyFormItemEditReferenceTableConfig extends PropertyFormItemEd
private String tablePropertyName;

@Schema(
description = "Set the property of this layer the reference (join) should be based on.",
example = "BUILDING_ID",
requiredMode = Schema.RequiredMode.REQUIRED
description = "TODO"
)
private String referencePropertyName;
private PropertyFormItemEditConfig[] editFormConfig;

@Schema(
description = "Set the property of the referenced layer (see layerId) the reference (join) should point to.",
example = "ID",
requiredMode = Schema.RequiredMode.REQUIRED
)
private String referencedLayerPropertyName;
// @Schema(
// description = "Set the property of this layer the reference (join) should be based on.",
// example = "BUILDING_ID",
// requiredMode = Schema.RequiredMode.REQUIRED
// )
// private String referencePropertyName;

// @Schema(
// description = "Set the property of the referenced layer (see layerId) the reference (join) should point to.",
// example = "ID",
// requiredMode = Schema.RequiredMode.REQUIRED
// )
// private String referencedLayerPropertyName;

}

0 comments on commit 34bd0b1

Please sign in to comment.