001package org.hl7.fhir.instance.model.api; 002 003import ca.uhn.fhir.model.api.annotation.SearchParamDefinition; 004import ca.uhn.fhir.rest.gclient.TokenClientParam; 005 006/* 007 * #%L 008 * HAPI FHIR - Core Library 009 * %% 010 * Copyright (C) 2014 - 2019 University Health Network 011 * %% 012 * Licensed under the Apache License, Version 2.0 (the "License"); 013 * you may not use this file except in compliance with the License. 014 * You may obtain a copy of the License at 015 * 016 * http://www.apache.org/licenses/LICENSE-2.0 017 * 018 * Unless required by applicable law or agreed to in writing, software 019 * distributed under the License is distributed on an "AS IS" BASIS, 020 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 021 * See the License for the specific language governing permissions and 022 * limitations under the License. 023 * #L% 024 */ 025 026public interface IAnyResource extends IBaseResource { 027 028 /** 029 * Search parameter constant for <b>_language</b> 030 */ 031 @SearchParamDefinition(name="_language", path="", description="The language of the resource", type="string" ) 032 String SP_RES_LANGUAGE = "_language"; 033 034 035 /** 036 * Search parameter constant for <b>_id</b> 037 */ 038 @SearchParamDefinition(name="_id", path="", description="The ID of the resource", type="token" ) 039 String SP_RES_ID = "_id"; 040 041 /** 042 * <b>Fluent Client</b> search parameter constant for <b>_id</b> 043 * <p> 044 * Description: <b>the _id of a resource</b><br> 045 * Type: <b>string</b><br> 046 * Path: <b>Resource._id</b><br> 047 * </p> 048 */ 049 TokenClientParam RES_ID = new TokenClientParam(IAnyResource.SP_RES_ID); 050 051 String getId(); 052 053 @Override 054 IIdType getIdElement(); 055 056 IPrimitiveType<String> getLanguageElement(); 057 058 Object getUserData(String name); 059 060 @Override 061 IAnyResource setId(String theId); 062 063 void setUserData(String name, Object value); 064 065}