eu.toop.connector.api.TCIdentifierFactory 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;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.peppolid.factory.IIdentifierFactory;
import com.helger.peppolid.simple.doctype.SimpleDocumentTypeIdentifier;
import com.helger.peppolid.simple.participant.SimpleParticipantIdentifier;
import com.helger.peppolid.simple.process.SimpleProcessIdentifier;
/**
* A special {@link IIdentifierFactory} for TOOP.
*
* @author Philip Helger
*/
public final class TCIdentifierFactory implements IIdentifierFactory
{
public static final String DOCTYPE_SCHEME = "toop-doctypeid-qns";
public static final String PARTICIPANT_SCHEME = "iso6523-actorid-upis";
public static final String PROCESS_SCHEME = "toop-procid-agreement";
static final TCIdentifierFactory INSTANCE_TC = new TCIdentifierFactory ();
private TCIdentifierFactory ()
{}
@Nullable
private static String _nullNotEmptyTrimmed (@Nullable final String s)
{
if (s == null)
return null;
final String ret = s.trim ();
return ret.length () == 0 ? null : ret;
}
@Override
public boolean isDocumentTypeIdentifierSchemeMandatory ()
{
return true;
}
@Nonnull
@Override
public String getDefaultDocumentTypeIdentifierScheme ()
{
return DOCTYPE_SCHEME;
}
@Override
@Nullable
public SimpleDocumentTypeIdentifier createDocumentTypeIdentifier (@Nullable final String sScheme, @Nullable final String sValue)
{
final String sRealValue = _nullNotEmptyTrimmed (isDocumentTypeIdentifierCaseInsensitive (sScheme) ? getUnifiedValue (sValue) : sValue);
if (sRealValue == null)
return null;
return new SimpleDocumentTypeIdentifier (_nullNotEmptyTrimmed (sScheme), sRealValue);
}
@Override
public boolean isParticipantIdentifierSchemeMandatory ()
{
return true;
}
@Nonnull
@Override
public String getDefaultParticipantIdentifierScheme ()
{
return PARTICIPANT_SCHEME;
}
@Override
@Nullable
public SimpleParticipantIdentifier createParticipantIdentifier (@Nullable final String sScheme, @Nullable final String sValue)
{
final String sRealValue = _nullNotEmptyTrimmed (isParticipantIdentifierCaseInsensitive (sScheme) ? getUnifiedValue (sValue) : sValue);
if (sRealValue == null)
return null;
return new SimpleParticipantIdentifier (_nullNotEmptyTrimmed (sScheme), sRealValue);
}
@Override
public boolean isProcessIdentifierSchemeMandatory ()
{
return true;
}
@Nonnull
@Override
public String getDefaultProcessIdentifierScheme ()
{
return PROCESS_SCHEME;
}
@Override
@Nullable
public SimpleProcessIdentifier createProcessIdentifier (@Nullable final String sScheme, @Nullable final String sValue)
{
final String sRealValue = _nullNotEmptyTrimmed (isProcessIdentifierCaseInsensitive (sScheme) ? getUnifiedValue (sValue) : sValue);
if (sRealValue == null)
return null;
return new SimpleProcessIdentifier (_nullNotEmptyTrimmed (sScheme), sRealValue);
}
}