001package ca.uhn.fhir.rest.server.method; 002 003/* 004 * #%L 005 * HAPI FHIR - Server Framework 006 * %% 007 * Copyright (C) 2014 - 2022 Smile CDR, Inc. 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 ca.uhn.fhir.i18n.Msg; 024import java.lang.reflect.Method; 025 026import org.hl7.fhir.instance.model.api.IBaseResource; 027 028import ca.uhn.fhir.context.*; 029//TODO Use of a deprecated method should be resolved 030import ca.uhn.fhir.rest.annotation.*; 031import ca.uhn.fhir.rest.param.ParameterUtil; 032import ca.uhn.fhir.rest.server.IResourceProvider; 033 034public abstract class BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody extends BaseOutcomeReturningMethodBinding { 035 036 private String myResourceName; 037 private Integer myIdParameterIndex; 038 039 public BaseOutcomeReturningMethodBindingWithResourceIdButNoResourceBody(Method theMethod, FhirContext theContext, Object theProvider, Class<?> theMethodAnnotationType, Class<? extends IBaseResource> theResourceTypeFromAnnotation) { 040 super(theMethod, theContext, theMethodAnnotationType, theProvider); 041 042 Class<? extends IBaseResource> resourceType = theResourceTypeFromAnnotation; 043 if (resourceType != IBaseResource.class) { 044 RuntimeResourceDefinition def = theContext.getResourceDefinition(resourceType); 045 myResourceName = def.getName(); 046 } else { 047 if (theProvider != null && theProvider instanceof IResourceProvider) { 048 RuntimeResourceDefinition def = theContext.getResourceDefinition(((IResourceProvider) theProvider).getResourceType()); 049 myResourceName = def.getName(); 050 } else { 051 throw new ConfigurationException(Msg.code(457) + "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?"); 052 } 053 } 054 055 myIdParameterIndex = ParameterUtil.findIdParameterIndex(theMethod, getContext()); 056 if (myIdParameterIndex == null) { 057 throw new ConfigurationException(Msg.code(458) + "Method '" + theMethod.getName() + "' on type '" + theMethod.getDeclaringClass().getCanonicalName() + "' has no parameter annotated with the @" + IdParam.class.getSimpleName() + " annotation"); 058 } 059 060 } 061 062 @Override 063 public String getResourceName() { 064 return myResourceName; 065 } 066 067 protected Integer getIdParameterIndex() { 068 return myIdParameterIndex; 069 } 070 071 072}