Created
December 6, 2012 13:04
-
-
Save splatch/4224321 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- | |
| JBoss, Home of Professional Open Source | |
| Copyright 2011 Red Hat Inc. and/or its affiliates and other contributors | |
| as indicated by the @authors tag. All rights reserved. | |
| See the copyright.txt in the distribution for a | |
| full listing of individual contributors. | |
| This copyrighted material is made available to anyone wishing to use, | |
| modify, copy, or redistribute it subject to the terms and conditions | |
| of the GNU Lesser General Public License, v. 2.1. | |
| This program is distributed in the hope that it will be useful, but WITHOUT A | |
| WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A | |
| PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. | |
| You should have received a copy of the GNU Lesser General Public License, | |
| v.2.1 along with this distribution; if not, write to the Free Software | |
| Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | |
| MA 02110-1301, USA. | |
| --> | |
| <schema xmlns="http://www.w3.org/2001/XMLSchema" | |
| xmlns:switchyard="urn:switchyard-config:switchyard:1.0" | |
| elementFormDefault="qualified"> | |
| <import namespace="urn:switchyard-config:switchyard:1.0"/> | |
| <complexType name="BaseCamelBinding"> | |
| <complexContent> | |
| <extension base="switchyard:SwitchYardBindingType"> | |
| <sequence> | |
| <element name="contextMapper" type="switchyard:ContextMapperType" minOccurs="0" maxOccurs="1"/> | |
| <element name="messageComposer" type="switchyard:MessageComposerType" minOccurs="0" maxOccurs="1"/> | |
| </sequence> | |
| </extension> | |
| </complexContent> | |
| </complexType> | |
| <group name="GenericFileBindingType"> | |
| <sequence> | |
| <element name="directory" type="string" /> | |
| <element name="autoCreate" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="bufferSize" type="integer" minOccurs="0" maxOccurs="1"/> | |
| <element name="fileName" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="flatten" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="charset" type="string" minOccurs="0" maxOccurs="1"/> | |
| </sequence> | |
| </group> | |
| <group name="CamelRemoteBindingTypeBase"> | |
| <sequence> | |
| <element name="host" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="port" type="int" minOccurs="0" maxOccurs="1"/> | |
| <element name="username" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="password" type="string" minOccurs="0" maxOccurs="1"/> | |
| </sequence> | |
| </group> | |
| <group name="CamelRemoteBindingTypeExtension"> | |
| <sequence> | |
| <element name="binary" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="connectTimeout" type="int" minOccurs="0" maxOccurs="1"/> | |
| <element name="disconnect" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="maximumReconnectAttempts" type="int" minOccurs="0" maxOccurs="1"/> | |
| <element name="reconnectDelay" type="int" minOccurs="0" maxOccurs="1"/> | |
| <element name="separator" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="stepwise" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="throwExceptionOnConnectFailed" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| </sequence> | |
| </group> | |
| <group name="ScheduledPollConsumerType"> | |
| <sequence> | |
| <element name="initialDelay" type="integer" minOccurs="0" maxOccurs="1"/> | |
| <element name="delay" type="integer" minOccurs="0" maxOccurs="1"/> | |
| <element name="useFixedDelay" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="sendEmptyMessageWhenIdle" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="timeUnit" minOccurs="0" maxOccurs="1"> | |
| <simpleType> | |
| <restriction base="string"> | |
| <enumeration value="NANOSECONDS" /> | |
| <enumeration value="MICROSECONDS" /> | |
| <enumeration value="MILLISECONDS" /> | |
| <enumeration value="SECONDS" /> | |
| <enumeration value="MINUTES" /> | |
| <enumeration value="HOURS" /> | |
| <enumeration value="DAYS" /> | |
| </restriction> | |
| </simpleType> | |
| </element> | |
| </sequence> | |
| </group> | |
| <group name="ScheduledBatchPollConsumerType"> | |
| <sequence> | |
| <element name="maxMessagesPerPoll" type="integer" minOccurs="0" maxOccurs="1"/> | |
| </sequence> | |
| </group> | |
| <group name="GenericFileConsumerType"> | |
| <sequence> | |
| <element name="delete" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="recursive" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="noop" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="preMove" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="move" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="moveFailed" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="include" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="exclude" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="idempotent" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="idempotentRepository" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="inProgressRepository" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="filter" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="sorter" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="sortBy" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="readLock" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="readLockTimeout " type="long" minOccurs="0" maxOccurs="1"/> | |
| <element name="readLockCheckInterval" type="integer" minOccurs="0" maxOccurs="1"/> | |
| <element name="exclusiveReadLockStrategy" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="processStrategy" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="startingDirectoryMustExist" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="directoryMustExist" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="doneFileName" type="string" minOccurs="0" maxOccurs="1"/> | |
| </sequence> | |
| </group> | |
| <group name="GenericFileProducerType"> | |
| <sequence> | |
| <element name="fileExist" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="tempPrefix" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="tempFileName" type="string" minOccurs="0" maxOccurs="1"/> | |
| <element name="keepLastModified" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="eagerDeleteTargetFile" type="boolean" minOccurs="0" maxOccurs="1"/> | |
| <element name="doneFileName" type="string" minOccurs="0" maxOccurs="1"/> | |
| </sequence> | |
| </group> | |
| </schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment