![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.juneau.xml.XmlClassMeta Maven / Gradle / Ivy
// ***************************************************************************************************************************
// * 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.juneau.xml;
import static org.apache.juneau.internal.CollectionUtils.*;
import java.util.*;
import org.apache.juneau.*;
import org.apache.juneau.xml.annotation.*;
/**
* Metadata on classes specific to the XML serializers and parsers pulled from the {@link Xml @Xml} annotation on the
* class.
*
* See Also:
* - XML Details
*
*/
public class XmlClassMeta extends ExtendedClassMeta {
private final Namespace namespace;
private final XmlFormat format;
private final String childName;
/**
* Constructor.
*
* @param cm The class that this annotation is defined on.
* @param mp XML metadata provider (for finding information about other artifacts).
*/
public XmlClassMeta(ClassMeta> cm, XmlMetaProvider mp) {
super(cm);
List xmls = list();
List schemas = list();
if (cm != null) {
cm.forEachAnnotation(Xml.class, x -> true, x -> xmls.add(x));
cm.forEachAnnotation(XmlSchema.class, x -> true, x -> schemas.add(x));
}
this.namespace = XmlUtils.findNamespace(xmls, schemas);
String _childName = null;
XmlFormat _format = XmlFormat.DEFAULT;
for (Xml a : xmls) {
if (a.format() != XmlFormat.DEFAULT)
_format = a.format();
if (! a.childName().isEmpty())
_childName = a.childName();
}
this.format = _format;
this.childName = _childName;
}
/**
* Returns the {@link Xml#format() @Xml(format)} annotation defined on the class.
*
* @return The value of the annotation, or {@link XmlFormat#DEFAULT} if not specified.
*/
protected XmlFormat getFormat() {
return format;
}
/**
* Returns the {@link Xml#childName() @Xml(childName)} annotation defined on the class.
*
* @return The value of the annotation, or null if not specified.
*/
protected String getChildName() {
return childName;
}
/**
* Returns the XML namespace associated with this class.
*
*
* Namespace is determined in the following order of {@link Xml#prefix() @Xml(prefix)} annotation:
*
* - Class.
*
- Package.
*
- Superclasses.
*
- Superclass packages.
*
- Interfaces.
*
- Interface packages.
*
*
* @return The namespace associated with this class, or null if no namespace is associated with it.
*/
public Namespace getNamespace() {
return namespace;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy