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

org.apache.camel.component.fhir.internal.FhirDeleteApiMethod Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version

/*
 * Camel ApiMethod Enumeration generated by camel-api-component-maven-plugin
 */
package org.apache.camel.component.fhir.internal;

import java.lang.reflect.Method;
import java.util.List;

import org.apache.camel.component.fhir.api.FhirDelete;

import org.apache.camel.support.component.ApiMethod;
import org.apache.camel.support.component.ApiMethodArg;
import org.apache.camel.support.component.ApiMethodImpl;

import static org.apache.camel.support.component.ApiMethodArg.arg;

/**
 * Camel {@link ApiMethod} Enumeration for org.apache.camel.component.fhir.api.FhirDelete
 */
public enum FhirDeleteApiMethod implements ApiMethod {

    RESOURCE(
        org.hl7.fhir.instance.model.api.IBaseOperationOutcome.class,
        "resource",
        arg("resource", org.hl7.fhir.instance.model.api.IBaseResource.class),
        arg("extraParameters", java.util.Map.class)),

    RESOURCEBYID(
        org.hl7.fhir.instance.model.api.IBaseOperationOutcome.class,
        "resourceById",
        arg("id", org.hl7.fhir.instance.model.api.IIdType.class),
        arg("extraParameters", java.util.Map.class)),

    RESOURCEBYID_1(
        org.hl7.fhir.instance.model.api.IBaseOperationOutcome.class,
        "resourceById",
        arg("type", String.class),
        arg("stringId", String.class),
        arg("extraParameters", java.util.Map.class)),

    RESOURCECONDITIONALBYURL(
        org.hl7.fhir.instance.model.api.IBaseOperationOutcome.class,
        "resourceConditionalByUrl",
        arg("url", String.class),
        arg("extraParameters", java.util.Map.class));

    

    private final ApiMethod apiMethod;

    private FhirDeleteApiMethod(Class resultType, String name, ApiMethodArg... args) {
        this.apiMethod = new ApiMethodImpl(FhirDelete.class, resultType, name, args);
    }

    @Override
    public String getName() { return apiMethod.getName(); }

    @Override
    public Class getResultType() { return apiMethod.getResultType(); }

    @Override
    public List getArgNames() { return apiMethod.getArgNames(); }

    @Override
    public List> getArgTypes() { return apiMethod.getArgTypes(); }

    @Override
    public Method getMethod() { return apiMethod.getMethod(); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy