eu.toop.connector.api.dsd.DSDDatasetResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tc-api Show documentation
Show all versions of tc-api Show documentation
Contains the TOOP Connector shared API
/**
* Copyright (C) 2018-2020 toop.eu
*
* 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.
*/
package eu.toop.connector.api.dsd;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.json.IJsonObject;
import com.helger.json.JsonObject;
import com.helger.peppolid.IDocumentTypeIdentifier;
import com.helger.peppolid.IParticipantIdentifier;
/**
* Simplified DSD Response Representation
*
* @author jerouris at 21.05.2020
*/
public class DSDDatasetResponse
{
private IParticipantIdentifier m_aDPIdentifier;
private String m_sDatasetIdentifier;
private String m_sDistributionFormat;
private String m_sDistributionConforms;
private String m_sDistributionMediaType;
private String m_sAccessServiceConforms;
private IDocumentTypeIdentifier m_aDocumentTypeIdentifier;
public DSDDatasetResponse ()
{}
@Nullable
public IParticipantIdentifier getDPIdentifier ()
{
return m_aDPIdentifier;
}
@Nonnull
public DSDDatasetResponse setDPIdentifier (@Nullable final IParticipantIdentifier aDPIdentifier)
{
m_aDPIdentifier = aDPIdentifier;
return this;
}
@Nullable
public String getDatasetIdentifier ()
{
return m_sDatasetIdentifier;
}
@Nonnull
public DSDDatasetResponse setDatasetIdentifier (@Nullable final String sDatasetIdentifier)
{
m_sDatasetIdentifier = sDatasetIdentifier;
return this;
}
@Nullable
public String getDistributionFormat ()
{
return m_sDistributionFormat;
}
@Nonnull
public DSDDatasetResponse setDistributionFormat (@Nullable final String sDistributionFormat)
{
m_sDistributionFormat = sDistributionFormat;
return this;
}
@Nullable
public String getDistributionConforms ()
{
return m_sDistributionConforms;
}
@Nonnull
public DSDDatasetResponse setDistributionConforms (@Nullable final String sDistributionConforms)
{
m_sDistributionConforms = sDistributionConforms;
return this;
}
@Nullable
public String getDistributionMediaType ()
{
return m_sDistributionMediaType;
}
@Nonnull
public DSDDatasetResponse setDistributionMediaType (@Nullable final String sDistributionMediaType)
{
m_sDistributionMediaType = sDistributionMediaType;
return this;
}
@Nullable
public String getAccessServiceConforms ()
{
return m_sAccessServiceConforms;
}
@Nonnull
public DSDDatasetResponse setAccessServiceConforms (@Nullable final String sAccessServiceConforms)
{
m_sAccessServiceConforms = sAccessServiceConforms;
return this;
}
@Nullable
public IDocumentTypeIdentifier getDocumentTypeIdentifier ()
{
return m_aDocumentTypeIdentifier;
}
@Nonnull
public DSDDatasetResponse setDocumentTypeIdentifier (@Nullable final IDocumentTypeIdentifier aDocumentTypeIdentifier)
{
m_aDocumentTypeIdentifier = aDocumentTypeIdentifier;
return this;
}
@Nonnull
public IJsonObject getAsJson ()
{
final IJsonObject ret = new JsonObject ();
if (m_aDPIdentifier != null)
ret.addJson ("participant-id",
new JsonObject ().add ("scheme", m_aDPIdentifier.getScheme ()).add ("value", m_aDPIdentifier.getValue ()));
ret.addIfNotNull ("dataset-id", m_sDatasetIdentifier);
ret.addIfNotNull ("distribution-format", m_sDistributionFormat);
ret.addIfNotNull ("distribution-conforms", m_sDistributionConforms);
ret.addIfNotNull ("distribution-mediatype", m_sDistributionMediaType);
ret.addIfNotNull ("accessservice-conforms", m_sAccessServiceConforms);
if (m_aDocumentTypeIdentifier != null)
ret.addJson ("doctype-id",
new JsonObject ().add ("scheme", m_aDocumentTypeIdentifier.getScheme ())
.add ("value", m_aDocumentTypeIdentifier.getValue ()));
return ret;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy