org.n52.io.response.dataset.TimeseriesMetadataOutput Maven / Gradle / Ivy
/*
* Copyright (C) 2013-2019 52°North Initiative for Geospatial Open Source
* Software GmbH
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation.
*
* If the program is linked with libraries which are licensed under one of
* the following licenses, the combination of the program with the linked
* library is not considered a "derivative work" of the program:
*
* - Apache License, version 2.0
* - Apache Software License, version 1.0
* - GNU Lesser General Public License, version 3
* - Mozilla Public License, versions 1.0, 1.1 and 2.0
* - Common Development and Distribution License (CDDL), version 1.0
*
* Therefore the distribution of the program linked with libraries licensed
* under the aforementioned licenses, is permitted by the copyright holders
* if the distribution is compliant with both the GNU General Public License
* version 2 and the aforementioned licenses.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
package org.n52.io.response.dataset;
import java.util.Collection;
import org.n52.io.request.IoParameters;
import org.n52.io.request.StyleProperties;
import org.n52.io.response.OptionalOutput;
import org.n52.io.response.ParameterOutput;
import org.n52.io.response.StatusInterval;
import org.n52.io.response.dataset.quantity.QuantityDatasetOutput;
import org.n52.io.response.dataset.quantity.QuantityValue;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
*
* @author Henning Bredel
* @deprecated since 2.0.0. use {@link QuantityDatasetOutput} instead.
*/
@Deprecated
public class TimeseriesMetadataOutput extends DatasetOutput {
public static final String STATION = "station";
public static final String RENDERING_HINTS = "renderingHints";
public static final String STATUS_INTERVALS = "statusIntervals";
private OptionalOutput station;
@Deprecated
private OptionalOutput renderingHints;
@Deprecated
private OptionalOutput> statusIntervals;
public TimeseriesMetadataOutput(IoParameters parameters) {
setValue(VALUE_TYPE, QuantityValue.TYPE, parameters, this::setValueType);
}
@Override
@JsonIgnore
public String getValueType() {
return super.getValueType();
}
@Override
public String getId() {
return ValueType.extractId(super.getId());
}
public StationOutput getStation() {
return getIfSerialized(station);
}
public void setStation(OptionalOutput station) {
this.station = station;
}
@Deprecated
public StyleProperties getRenderingHints() {
return getIfSerialized(renderingHints);
}
@Deprecated
public void setRenderingHints(OptionalOutput renderingHints) {
this.renderingHints = renderingHints;
}
@Deprecated
public Collection getStatusIntervals() {
return getIfSerializedCollection(statusIntervals);
}
@Deprecated
public void setStatusIntervals(OptionalOutput> statusIntervals) {
this.statusIntervals = statusIntervals;
}
@Override
@JsonProperty("parameters")
public DatasetParameters getDatasetParameters() {
DatasetParameters datasetParameters = super.getDatasetParameters();
return datasetParameters != null
? new AdaptedSeriesParameters(datasetParameters)
: null;
}
private static class AdaptedSeriesParameters extends DatasetParameters {
private final DatasetParameters parameters;
AdaptedSeriesParameters(DatasetParameters parameters) {
this.parameters = parameters == null
? new DatasetParameters()
: parameters;
}
@Override
public ParameterOutput getPlatform() {
// stay backwards compatible
return null;
}
@Override
public void setPhenomenon(ParameterOutput phenomenon) {
parameters.setPhenomenon(phenomenon);
}
@Override
public void setProcedure(ParameterOutput procedure) {
parameters.setProcedure(procedure);
}
@Override
public void setCategory(ParameterOutput category) {
parameters.setCategory(category);
}
@Override
public void setOffering(ParameterOutput offering) {
parameters.setOffering(offering);
}
@Override
public void setFeature(ParameterOutput feature) {
parameters.setFeature(feature);
}
@Override
public void setService(ParameterOutput service) {
parameters.setService(service);
}
@Override
public void setPlatform(ParameterOutput platform) {
parameters.setPlatform(platform);
}
@Override
public ParameterOutput getPhenomenon() {
return parameters.getPhenomenon();
}
@Override
public ParameterOutput getProcedure() {
return parameters.getProcedure();
}
@Override
public ParameterOutput getCategory() {
return parameters.getCategory();
}
@Override
public ParameterOutput getOffering() {
return parameters.getOffering();
}
@Override
public ParameterOutput getFeature() {
return parameters.getFeature();
}
@Override
public ParameterOutput getService() {
return parameters.getService();
}
}
}