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

se.idsec.signservice.integration.SignResponseProcessingParameters Maven / Gradle / Ivy

/*
 * Copyright 2019-2022 IDsec Solutions AB
 *
 * 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 se.idsec.signservice.integration;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import se.idsec.signservice.integration.core.Extensible;
import se.idsec.signservice.integration.core.Extension;
import se.idsec.signservice.integration.core.ObjectBuilder;
import se.idsec.signservice.integration.document.xml.XMLSignatureLocation;

/**
 * Class representing the processing parameters for a call to
 * {@link SignServiceIntegrationService#processSignResponse(String, String, se.idsec.signservice.integration.core.SignatureState, SignResponseProcessingParameters)}.
 *
 * 

* Note: More settings will be added ... *

* * @author Martin Lindström ([email protected]) * @author Stefan Santesson ([email protected]) */ @ToString @NoArgsConstructor @AllArgsConstructor @Builder @JsonInclude(Include.NON_NULL) public class SignResponseProcessingParameters implements Extensible { /** * If an XML document is signed, the caller has the possibility to control where in the document the * {@code ds:Signature} element should be inserted. If {@code null}, the signature element will be inserted as the * last child of the document root element. * * @param xmlSignatureLocation XML signature insertion directive * @return XML signature insertion directive */ @Getter @Setter private XMLSignatureLocation xmlSignatureLocation; /** Extensions for the object. */ private Extension extension; /** {@inheritDoc} */ @Override public Extension getExtension() { return this.extension; } /** {@inheritDoc} */ @Override public void setExtension(final Extension extension) { this.extension = extension; } /** * Builder for {@code SignResponseProcessingParameters} objects. */ public static class SignResponseProcessingParametersBuilder implements ObjectBuilder { // Lombok } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy