/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.module.extension.internal.config.dsl.object; import static org.mule.metadata.java.api.utils.JavaTypeUtils.getType; import static org.mule.runtime.dsl.api.component.AttributeDefinition.Builder.fromChildConfiguration; import org.mule.metadata.api.model.ObjectType; import org.mule.runtime.dsl.api.component.AttributeDefinition; import org.mule.runtime.core.api.MuleContext; import org.mule.runtime.extension.api.dsl.syntax.DslElementSyntax; /** * A {@link ObjectParsingDelegate} which only parses {@link ObjectType} which represent one specific java type. * * @since 4.0 */ public class FixedTypeParsingDelegate implements ObjectParsingDelegate { private final Class<?> type; /** * Creates a new instance * * @param type the type that {@code this} delegate accepts */ public FixedTypeParsingDelegate(Class<?> type) { this.type = type; } /** * @param objectType an {@link ObjectType} * @return {@code true} if the {@code objectType} represents the {@link #type} */ @Override public boolean accepts(ObjectType objectType) { return type.equals(getType(objectType)); } /** * {@inheritDoc} */ @Override public AttributeDefinition.Builder parse(String name, ObjectType objectType, DslElementSyntax elementDsl) { return fromChildConfiguration(type); } }