001package ca.uhn.fhir.rest.client.method;
002
003/*
004 * #%L
005 * HAPI FHIR - Client Framework
006 * %%
007 * Copyright (C) 2014 - 2019 University Health Network
008 * %%
009 * Licensed under the Apache License, Version 2.0 (the "License");
010 * you may not use this file except in compliance with the License.
011 * You may obtain a copy of the License at
012 * 
013 *      http://www.apache.org/licenses/LICENSE-2.0
014 * 
015 * Unless required by applicable law or agreed to in writing, software
016 * distributed under the License is distributed on an "AS IS" BASIS,
017 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
018 * See the License for the specific language governing permissions and
019 * limitations under the License.
020 * #L%
021 */
022
023import java.lang.reflect.Method;
024
025import org.hl7.fhir.instance.model.api.IBaseResource;
026
027import ca.uhn.fhir.context.*;
028//TODO Use of a deprecated method should be resolved
029import ca.uhn.fhir.rest.annotation.*;
030import ca.uhn.fhir.rest.param.ParameterUtil;
031
032public abstract class BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody extends BaseOutcomeReturningMethodBinding {
033
034        private String myResourceName;
035        private Integer myIdParameterIndex;
036
037        public BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody(Method theMethod, FhirContext theContext, Object theProvider, Class<?> theMethodAnnotationType, Class<? extends IBaseResource> theResourceTypeFromAnnotation) {
038                super(theMethod, theContext, theMethodAnnotationType, theProvider);
039
040                Class<? extends IBaseResource> resourceType = theResourceTypeFromAnnotation;
041                if (resourceType != IBaseResource.class) {
042                        RuntimeResourceDefinition def = theContext.getResourceDefinition(resourceType);
043                        myResourceName = def.getName();
044                } else {
045                                throw new ConfigurationException(
046                                                "Can not determine resource type for method '" + theMethod.getName() + "' on type " + theMethod.getDeclaringClass().getCanonicalName() + " - Did you forget to include the resourceType() value on the @" + Delete.class.getSimpleName() + " method annotation?");
047                }
048
049                myIdParameterIndex = ParameterUtil.findIdParameterIndex(theMethod, getContext());
050                if (myIdParameterIndex == null) {
051                        throw new ConfigurationException("Method '" + theMethod.getName() + "' on type '" + theMethod.getDeclaringClass().getCanonicalName() + "' has no parameter annotated with the @" + IdParam.class.getSimpleName() + " annotation");
052                }
053
054        }
055
056        @Override
057        public String getResourceName() {
058                return myResourceName;
059        }
060
061        protected Integer getIdParameterIndex() {
062                return myIdParameterIndex;
063        }
064
065
066}