Commit 2e2f283c authored by Noel Alonso's avatar Noel Alonso
Browse files

Elimina restos del servicio topónimos

parent 2fb1ecf1
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@ import es.redmic.models.es.geojson.geofixedstation.dto.GeoFixedObjectCollectingS
import es.redmic.models.es.geojson.geofixedstation.dto.GeoFixedTimeSeriesDTO;
import es.redmic.models.es.geojson.infrastructure.dto.InfrastructureDTO;
import es.redmic.models.es.geojson.isolines.dto.IsolinesDTO;
import es.redmic.models.es.geojson.toponym.dto.ToponymDTO;
import es.redmic.models.es.geojson.tracking.animal.dto.AnimalTrackingDTO;
import es.redmic.models.es.geojson.tracking.common.ElementTrackingDTO;
import es.redmic.models.es.geojson.tracking.platform.dto.PlatformTrackingDTO;
@@ -54,7 +53,6 @@ public final class DataPrefixType {
			INFRASTRUCTURE = "if",
			ISOLINES = "il",
			AREA = "ar",
			TOPONYM = "tp",
			TIMESERIES = "ts",
			COLLECTINGSERIES = "cs",
			ACTIVITY = "ac",
@@ -108,7 +106,6 @@ public final class DataPrefixType {
				add(46L);
			}
		}));
		classesHash.put(ToponymDTO.class, new Type(TOPONYM));
		//classesHash.put(TimeSeriesDTO.class, new Type(TIMESERIES));
		classesHash.put(ObjectCollectingSeriesDTO.class, new Type(COLLECTINGSERIES));
		classesHash.put(ActivityDTO.class, new Type(ACTIVITY));
+0 −30
Original line number Diff line number Diff line
package es.redmic.models.es.maintenance.toponym.dto;

/*-
 * #%L
 * Models
 * %%
 * Copyright (C) 2019 REDMIC Project / Server
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import es.redmic.models.es.common.dto.DomainImplDTO;

public class ToponymTypeDTO extends DomainImplDTO {

	public ToponymTypeDTO() {
		super();
	}
}