/*
* $Id: SftpNamespaceHandler.java 21125 2011-01-26 21:21:10Z dzapata $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.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.transport.sftp.config;
import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler;
import org.mule.config.spring.parsers.generic.ChildDefinitionParser;
import org.mule.config.spring.parsers.generic.OrphanDefinitionParser;
import org.mule.endpoint.URIBuilder;
import org.mule.transport.file.ExpressionFilenameParser;
import org.mule.transport.sftp.SftpConnector;
/**
* Registers a Bean Definition Parser for handling <code><sftp:connector></code>
* elements.
*/
public class SftpNamespaceHandler extends AbstractMuleNamespaceHandler
{
public void init()
{
registerBeanDefinitionParser("connector", new OrphanDefinitionParser(SftpConnector.class, true));
registerBeanDefinitionParser("expression-filename-parser", new ChildDefinitionParser(
"filenameParser", ExpressionFilenameParser.class));
registerStandardTransportEndpoints("sftp", URIBuilder.SOCKET_ATTRIBUTES);
registerConnectorDefinitionParser(SftpConnector.class);
}
}