org.mule.endpoint.AbstractMetaEndpointBuilder Maven / Gradle / Ivy
/*
* $Id: AbstractMetaEndpointBuilder.java 20321 2010-11-24 15:21:24Z dfeist $
* --------------------------------------------------------------------------------------
* 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.endpoint;
import org.mule.api.MuleContext;
import org.mule.api.endpoint.EndpointException;
import org.mule.api.endpoint.EndpointURI;
import org.mule.api.endpoint.ImmutableEndpoint;
import org.mule.api.transport.Connector;
import org.mule.transport.AbstractConnector;
import org.mule.util.BeanUtils;
import java.util.Map;
/**
* A base class used for Meta endpoint builders such as RSS or ATOM. This class overrides the {@link #setProperties(java.util.Map)}
* method
*/
public abstract class AbstractMetaEndpointBuilder extends EndpointURIEndpointBuilder
{
protected AbstractMetaEndpointBuilder()
{
}
protected AbstractMetaEndpointBuilder(EndpointURIEndpointBuilder global)
throws EndpointException
{
super(global);
}
protected AbstractMetaEndpointBuilder(URIBuilder builder)
{
super(builder);
}
protected AbstractMetaEndpointBuilder(String address, MuleContext muleContext)
{
super(address, muleContext);
}
protected AbstractMetaEndpointBuilder(EndpointURI endpointURI)
{
super(endpointURI);
}
protected AbstractMetaEndpointBuilder(ImmutableEndpoint source)
{
super(source);
}
@Override
public void setProperties(Map
© 2015 - 2024 Weber Informatics LLC | Privacy Policy