org.apache.camel.maven.Constants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-eip-documentation-enricher-maven-plugin Show documentation
Show all versions of camel-eip-documentation-enricher-maven-plugin Show documentation
Adds documentation to camel xsd schema
/*
* 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.
*/
package org.apache.camel.maven;
/**
* Stores mojo related constants.
*/
public final class Constants {
// Camel core constants.
public static final String DEFAULT_XML_INTENTION = " ";
public static final int WRAP_LENGTH = 120;
// XML constants.
public static final String XML_SCHEMA_NAMESPACE_PREFIX = "xs";
public static final String XML_SCHEMA_NAMESPACE_URI = "http://www.w3.org/2001/XMLSchema";
public static final String NAME_ATTRIBUTE_NAME = "name";
public static final String TYPE_ATTRIBUTE_NAME = "type";
public static final String XS_ANNOTATION_ELEMENT_NAME = "xs:annotation";
public static final String XS_DOCUMENTATION_ELEMENT_NAME = "xs:documentation";
private Constants() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy