All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openehealth.ipf.platform.camel.ihe.mllp.core.MllpTransactionEndpointConfiguration Maven / Gradle / Ivy

There is a newer version: 5.0-m2
Show newest version
/*
 * Copyright 2014 the original author or authors.
 *
 * 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 org.openehealth.ipf.platform.camel.ihe.mllp.core;

import lombok.Getter;

import java.util.Map;
import org.openehealth.ipf.commons.ihe.hl7v2.storage.UnsolicitedFragmentationStorage;
import org.openehealth.ipf.commons.ihe.hl7v2.storage.InteractiveContinuationStorage;

/**
 * Camel endpoint configuration for MLLP-based eHealth transactions (like IHE PIX, PDQ, XAD-PID, etc.).
 * @author Dmytro Rud
 */
public class MllpTransactionEndpointConfiguration extends MllpEndpointConfiguration {
    private static final long serialVersionUID = -6154765290339153487L;

    @Getter private final boolean supportUnsolicitedFragmentation;
    @Getter private final int unsolicitedFragmentationThreshold;
    @Getter private final UnsolicitedFragmentationStorage unsolicitedFragmentationStorage;

    @Getter private final boolean supportInteractiveContinuation;
    @Getter private final int interactiveContinuationDefaultThreshold;
    @Getter private final InteractiveContinuationStorage interactiveContinuationStorage;
    @Getter private final boolean autoCancel;

    /**
     * @deprecated
     */
    protected MllpTransactionEndpointConfiguration(MllpComponent component, Map parameters) throws Exception {
        this(component, UNKNOWN_URI, parameters);
    }

    protected MllpTransactionEndpointConfiguration(MllpComponent component, String uri, Map parameters) throws Exception {
        super(component, uri, parameters);

        supportUnsolicitedFragmentation = component.getAndRemoveParameter(
                parameters, "supportUnsolicitedFragmentation", boolean.class, false);
        unsolicitedFragmentationThreshold = component.getAndRemoveParameter(
                parameters, "unsolicitedFragmentationThreshold", int.class, -1);            // >= 3 segments

        unsolicitedFragmentationStorage = component.resolveAndRemoveReferenceParameter(
                parameters,
                "unsolicitedFragmentationStorage",
                UnsolicitedFragmentationStorage.class);

        supportInteractiveContinuation = component.getAndRemoveParameter(
                parameters, "supportInteractiveContinuation", boolean.class, false);
        interactiveContinuationDefaultThreshold = component.getAndRemoveParameter(
                parameters, "interactiveContinuationDefaultThreshold", int.class, -1);      // >= 1 data record

        interactiveContinuationStorage = component.resolveAndRemoveReferenceParameter(
                        parameters,
                        "interactiveContinuationStorage",
                        InteractiveContinuationStorage.class);

        autoCancel = component.getAndRemoveParameter(parameters, "autoCancel", boolean.class, false);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy