001/*-
002 * #%L
003 * HAPI FHIR - Server Framework
004 * %%
005 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
006 * %%
007 * Licensed under the Apache License, Version 2.0 (the "License");
008 * you may not use this file except in compliance with the License.
009 * You may obtain a copy of the License at
010 *
011 *      http://www.apache.org/licenses/LICENSE-2.0
012 *
013 * Unless required by applicable law or agreed to in writing, software
014 * distributed under the License is distributed on an "AS IS" BASIS,
015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016 * See the License for the specific language governing permissions and
017 * limitations under the License.
018 * #L%
019 */
020package ca.uhn.fhir.rest.server.interceptor.consent;
021
022import ca.uhn.fhir.rest.api.server.RequestDetails;
023import ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException;
024import org.hl7.fhir.instance.model.api.IBaseResource;
025
026/**
027 * Implementation of {@link IConsentService} that forwards to another
028 * implementation of {@link IConsentService}. This class is mostly
029 * provided for testing purposes.
030 */
031public class DelegatingConsentService implements IConsentService {
032
033        private IConsentService myTarget;
034
035        @Override
036        public ConsentOutcome startOperation(RequestDetails theRequestDetails, IConsentContextServices theContextServices) {
037                return myTarget.startOperation(theRequestDetails, theContextServices);
038        }
039
040        @Override
041        public boolean shouldProcessCanSeeResource(
042                        RequestDetails theRequestDetails, IConsentContextServices theContextServices) {
043                return myTarget.shouldProcessCanSeeResource(theRequestDetails, theContextServices);
044        }
045
046        @Override
047        public ConsentOutcome canSeeResource(
048                        RequestDetails theRequestDetails, IBaseResource theResource, IConsentContextServices theContextServices) {
049                return myTarget.canSeeResource(theRequestDetails, theResource, theContextServices);
050        }
051
052        @Override
053        public ConsentOutcome willSeeResource(
054                        RequestDetails theRequestDetails, IBaseResource theResource, IConsentContextServices theContextServices) {
055                return myTarget.willSeeResource(theRequestDetails, theResource, theContextServices);
056        }
057
058        @Override
059        public void completeOperationSuccess(RequestDetails theRequestDetails, IConsentContextServices theContextServices) {
060                myTarget.completeOperationSuccess(theRequestDetails, theContextServices);
061        }
062
063        @Override
064        public void completeOperationFailure(
065                        RequestDetails theRequestDetails,
066                        BaseServerResponseException theException,
067                        IConsentContextServices theContextServices) {
068                myTarget.completeOperationFailure(theRequestDetails, theException, theContextServices);
069        }
070
071        public void setTarget(IConsentService theTarget) {
072                myTarget = theTarget;
073        }
074}