Class MapResponse

  • All Implemented Interfaces:
    Serializable

    @Generated("org.openapitools.codegen.languages.SpringCodegen")
    public class MapResponse
    extends Object
    implements Serializable
    Any information needed to draw a basic map on a page. May include base layers.
    See Also:
    Serialized Form
    • Constructor Detail

      • MapResponse

        public MapResponse()
    • Method Detail

      • getInitialExtent

        @NotNull
        @Valid
        public @NotNull @Valid Bounds getInitialExtent()
        Get initialExtent
        Returns:
        initialExtent
      • setInitialExtent

        public void setInitialExtent​(Bounds initialExtent)
      • getMaxExtent

        @Valid
        public @Valid Bounds getMaxExtent()
        Get maxExtent
        Returns:
        maxExtent
      • setMaxExtent

        public void setMaxExtent​(Bounds maxExtent)
      • getServices

        @NotNull
        @Valid
        public @NotNull @Valid Set<@Valid Service> getServices()
        Get services
        Returns:
        services
      • setServices

        public void setServices​(Set<@Valid Service> services)
      • getBaseLayerTreeNodes

        @NotNull
        @Valid
        public @NotNull @Valid List<@Valid LayerTreeNode> getBaseLayerTreeNodes()
        Unordered list of all tree nodes of base layers. Start with the node with root set to true and use the ordered children array property to order the tree. For base layers, only one child node (with all its' child layers) of the root should be displayed at one time.
        Returns:
        baseLayerTreeNodes
      • setBaseLayerTreeNodes

        public void setBaseLayerTreeNodes​(List<@Valid LayerTreeNode> baseLayerTreeNodes)
      • getLayerTreeNodes

        @NotNull
        @Valid
        public @NotNull @Valid List<@Valid LayerTreeNode> getLayerTreeNodes()
        Unordered list of all tree nodes of overlay/thematic/transparent layers. Start with the node with root set to true and use the ordered children array property to order the tree.
        Returns:
        layerTreeNodes
      • setLayerTreeNodes

        public void setLayerTreeNodes​(List<@Valid LayerTreeNode> layerTreeNodes)
      • getAppLayers

        @NotNull
        @Valid
        public @NotNull @Valid List<@Valid AppLayer> getAppLayers()
        Unordered list of all AppLayers referenced from baseLayerTreeNodes and layerTreeNodes. Note that you need to lookup these by id, but OpenAPI only supports a map by using strings as keys, so an array is used instead.
        Returns:
        appLayers
      • setAppLayers

        public void setAppLayers​(List<@Valid AppLayer> appLayers)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object