org.apache.jackrabbit.standalone.cli.command-line-rules.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackrabbit-standalone-components Show documentation
Show all versions of jackrabbit-standalone-components Show documentation
Jackrabbit components for Jackrabbit Standalone
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!DOCTYPE digester-rules PUBLIC "-//Jakarta Apache //DTD digester-rules XML V1.0//EN" "digester-rules.dtd"> <digester-rules> <pattern value="commands/command"> <object-create-rule classname="org.apache.jackrabbit.standalone.cli.CommandLine"/> <set-properties-rule/> <call-method-rule pattern="alias" methodname="addAlias" paramcount="1" /> <call-param-rule pattern="alias" paramnumber="0" attrname="name"/> <set-next-rule methodname="add" paramtype="java.lang.Object"/> </pattern> <pattern value="commands/command/argument"> <object-create-rule classname="org.apache.jackrabbit.standalone.cli.Argument" /> <set-next-rule methodname="addArgument" /> <set-properties-rule> <alias attr-name="arg-name" prop-name="argName"/> <alias attr-name="context-key" prop-name="contextKey"/> <alias attr-name="default" prop-name="value"/> </set-properties-rule> </pattern> <pattern value="commands/command/option"> <object-create-rule classname="org.apache.jackrabbit.standalone.cli.Option" /> <set-properties-rule> <alias attr-name="arg-name" prop-name="argName"/> <alias attr-name="context-key" prop-name="contextKey"/> <alias attr-name="default" prop-name="value"/> </set-properties-rule> <set-next-rule methodname="addOption" /> </pattern> <pattern value="commands/command/flag"> <object-create-rule classname="org.apache.jackrabbit.standalone.cli.Flag" /> <set-properties-rule> <alias attr-name="context-key" prop-name="contextKey"/> </set-properties-rule> <set-next-rule methodname="addFlag" /> </pattern> </digester-rules>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy