PlanTopografie.java

  1. /*
  2.  * Copyright (C) 2016 - 2017 B3Partners B.V.
  3.  *
  4.  * This program is free software: you can redistribute it and/or modify
  5.  * it under the terms of the GNU Affero General Public License as published by
  6.  * the Free Software Foundation, either version 3 of the License, or
  7.  * (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU Affero General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Affero General Public License
  15.  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  16.  */
  17. package nl.b3p.topnl.entities;

  18. import org.locationtech.jts.geom.Geometry;

  19. /**
  20.  * @author Meine Toonen meinetoonen@b3partners.nl
  21.  */
  22. public class PlanTopografie extends TopNLEntity {

  23.   private String typePlanTopografie;
  24.   private String naam;

  25.   private Geometry geometrie;

  26.   public String getTypePlanTopografie() {
  27.     return typePlanTopografie;
  28.   }

  29.   public void setTypePlanTopografie(String typePlanTopografie) {
  30.     this.typePlanTopografie = typePlanTopografie;
  31.   }

  32.   public String getNaam() {
  33.     return naam;
  34.   }

  35.   public void setNaam(String naam) {
  36.     this.naam = naam;
  37.   }

  38.   public Geometry getGeometrie() {
  39.     return geometrie;
  40.   }

  41.   public void setGeometrie(Geometry geometrie) {
  42.     this.geometrie = geometrie;
  43.   }
  44. }