├── .editorconfig ├── .github └── workflows │ ├── codeql.yml │ └── maven-build-action.yaml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE ├── README.md ├── hyperjaxb ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── ejb │ ├── etc │ │ ├── ejb-3_0-fr-spec-persistence.pdf │ │ ├── java_persistence-2_0-edr-spec.pdf │ │ ├── persistence-2_0-final-spec.pdf │ │ └── persistence-2_4-pfd2-spec.pdf │ ├── extensions │ │ ├── naming │ │ │ ├── custom-naming │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── extensions │ │ │ │ │ └── naming │ │ │ │ │ └── impl │ │ │ │ │ ├── CustomApplicationContext.java │ │ │ │ │ └── CustomSimpleNoUnderscoreNaming.java │ │ │ └── pom.xml │ │ └── pom.xml │ ├── plugin │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ ├── annotation │ │ │ │ │ └── util │ │ │ │ │ │ └── AnnotationUtils.java │ │ │ │ │ ├── beans │ │ │ │ │ └── factory │ │ │ │ │ │ ├── JAXBContextFactory.java │ │ │ │ │ │ └── UnmarshalledResourceFactory.java │ │ │ │ │ ├── codemodel │ │ │ │ │ └── util │ │ │ │ │ │ ├── JExprUtils.java │ │ │ │ │ │ └── JTypeUtils.java │ │ │ │ │ ├── ejb │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── IApplicationContext.java │ │ │ │ │ ├── jpa3 │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ ├── ApplicationContext.java │ │ │ │ │ │ │ └── JPA3Plugin.java │ │ │ │ │ │ └── strategy │ │ │ │ │ │ │ ├── annotate │ │ │ │ │ │ │ └── CreateXAnnotations.java │ │ │ │ │ │ │ ├── mapping │ │ │ │ │ │ │ ├── EmbeddableAttributesMapping.java │ │ │ │ │ │ │ └── MarshalMappings.java │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ └── base │ │ │ │ │ │ │ │ ├── WrapCollectionBuiltinNonReference.java │ │ │ │ │ │ │ │ └── WrapCollectionEnumNonReference.java │ │ │ │ │ │ │ └── processor │ │ │ │ │ │ │ ├── PersistenceFactory.java │ │ │ │ │ │ │ └── PersistenceMarshaller.java │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── ApplicationContext.java │ │ │ │ │ │ └── EjbPlugin.java │ │ │ │ │ └── strategy │ │ │ │ │ │ ├── annotate │ │ │ │ │ │ ├── AnnotateOutline.java │ │ │ │ │ │ ├── AnnotatingArrayValueVisitor.java │ │ │ │ │ │ ├── AnnotatingSingleValueVisitor.java │ │ │ │ │ │ ├── AnnotatingVisitor.java │ │ │ │ │ │ ├── Annotator.java │ │ │ │ │ │ └── CreateXAnnotations.java │ │ │ │ │ │ ├── customizing │ │ │ │ │ │ ├── Customizing.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── DefaultCustomizing.java │ │ │ │ │ │ ├── ignoring │ │ │ │ │ │ ├── Ignoring.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── DefaultIgnoring.java │ │ │ │ │ │ ├── mapping │ │ │ │ │ │ ├── AssociationMapping.java │ │ │ │ │ │ ├── AttributeMapping.java │ │ │ │ │ │ ├── AttributesMapping.java │ │ │ │ │ │ ├── BasicMapping.java │ │ │ │ │ │ ├── ClassOutlineMapping.java │ │ │ │ │ │ ├── DefaultAssociationMapping.java │ │ │ │ │ │ ├── DefaultAttributeMapping.java │ │ │ │ │ │ ├── ElementCollectionMapping.java │ │ │ │ │ │ ├── EmbeddableAttributesMapping.java │ │ │ │ │ │ ├── EmbeddableMapping.java │ │ │ │ │ │ ├── EmbeddedAssociationMappingWrapper.java │ │ │ │ │ │ ├── EmbeddedIdMapping.java │ │ │ │ │ │ ├── EmbeddedMapping.java │ │ │ │ │ │ ├── EntityMapping.java │ │ │ │ │ │ ├── EntityOrMappedSuperclassOrEmbeddableMapping.java │ │ │ │ │ │ ├── FieldOutlineMapping.java │ │ │ │ │ │ ├── IdMapping.java │ │ │ │ │ │ ├── ManyToManyMapping.java │ │ │ │ │ │ ├── ManyToOneMapping.java │ │ │ │ │ │ ├── MappedSuperclassMapping.java │ │ │ │ │ │ ├── Mapping.java │ │ │ │ │ │ ├── MarshalMappings.java │ │ │ │ │ │ ├── OneToManyMapping.java │ │ │ │ │ │ ├── OneToOneMapping.java │ │ │ │ │ │ ├── ToManyMapping.java │ │ │ │ │ │ ├── ToOneMapping.java │ │ │ │ │ │ ├── TransientMapping.java │ │ │ │ │ │ └── VersionMapping.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── AdaptTypeUse.java │ │ │ │ │ │ ├── ClassInfoProcessor.java │ │ │ │ │ │ ├── CreateDefaultIdPropertyInfos.java │ │ │ │ │ │ ├── CreatePropertyInfos.java │ │ │ │ │ │ ├── GetTypes.java │ │ │ │ │ │ ├── ModelProcessor.java │ │ │ │ │ │ ├── ProcessClassInfo.java │ │ │ │ │ │ ├── ProcessModel.java │ │ │ │ │ │ ├── ProcessPropertyInfos.java │ │ │ │ │ │ ├── PropertyInfoProcessor.java │ │ │ │ │ │ └── base │ │ │ │ │ │ │ ├── AbstractAdaptBuiltinPropertyInfo.java │ │ │ │ │ │ │ ├── AbstractAdaptEnumPropertyInfo.java │ │ │ │ │ │ │ ├── AbstractAdaptPropertyInfo.java │ │ │ │ │ │ │ ├── AbstractWrapBuiltin.java │ │ │ │ │ │ │ ├── AdaptBuiltinTypeUse.java │ │ │ │ │ │ │ ├── AdaptCollectionBuiltinNonReference.java │ │ │ │ │ │ │ ├── AdaptSingleBuiltinNonReference.java │ │ │ │ │ │ │ ├── AdaptSingleBuiltinReference.java │ │ │ │ │ │ │ ├── AdaptSingleEnumNonReferenceAsEnumValue.java │ │ │ │ │ │ │ ├── AdaptSingleWildcardNonReference.java │ │ │ │ │ │ │ ├── AdaptSingleWildcardReference.java │ │ │ │ │ │ │ ├── CreateIdClass.java │ │ │ │ │ │ │ ├── CreateNoPropertyInfos.java │ │ │ │ │ │ │ ├── DefaultCreateDefaultIdPropertyInfos.java │ │ │ │ │ │ │ ├── DefaultCreateDefaultVersionPropertyInfos.java │ │ │ │ │ │ │ ├── DefaultGetTypes.java │ │ │ │ │ │ │ ├── DefaultProcessClassInfo.java │ │ │ │ │ │ │ ├── DefaultProcessModel.java │ │ │ │ │ │ │ ├── DefaultProcessPropertyInfos.java │ │ │ │ │ │ │ ├── GetIdPropertyInfos.java │ │ │ │ │ │ │ ├── GetVersionPropertyInfos.java │ │ │ │ │ │ │ ├── WrapCollectionAttribute.java │ │ │ │ │ │ │ ├── WrapCollectionElement.java │ │ │ │ │ │ │ ├── WrapCollectionHeteroElement.java │ │ │ │ │ │ │ ├── WrapCollectionHeteroReference.java │ │ │ │ │ │ │ ├── WrapCollectionValue.java │ │ │ │ │ │ │ ├── WrapSingleBuiltinNonReference.java │ │ │ │ │ │ │ ├── WrapSingleBuiltinReference.java │ │ │ │ │ │ │ ├── WrapSingleClassElementReference.java │ │ │ │ │ │ │ ├── WrapSingleEnumElementReference.java │ │ │ │ │ │ │ ├── WrapSingleEnumNonReference.java │ │ │ │ │ │ │ ├── WrapSingleHeteroElement.java │ │ │ │ │ │ │ ├── WrapSingleHeteroReference.java │ │ │ │ │ │ │ ├── WrapSingleSubstitutedElementReference.java │ │ │ │ │ │ │ └── WrapSingleWildcardReference.java │ │ │ │ │ │ ├── naming │ │ │ │ │ │ ├── Naming.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ ├── DefaultNaming.java │ │ │ │ │ │ │ └── EmbeddedNamingWrapper.java │ │ │ │ │ │ ├── outline │ │ │ │ │ │ └── OutlineProcessor.java │ │ │ │ │ │ └── processor │ │ │ │ │ │ ├── ClassPersistenceProcessor.java │ │ │ │ │ │ ├── ClassPersistenceUnitFactory.java │ │ │ │ │ │ ├── DefaultModelAndOutlineProcessor.java │ │ │ │ │ │ ├── MappingFilePersistenceProcessor.java │ │ │ │ │ │ ├── MappingFilePersistenceUnitFactory.java │ │ │ │ │ │ ├── ModelAndOutlineProcessor.java │ │ │ │ │ │ ├── PersistenceFactory.java │ │ │ │ │ │ ├── PersistenceMarshaller.java │ │ │ │ │ │ └── PersistenceUnitFactory.java │ │ │ │ │ ├── jaxb │ │ │ │ │ └── lang │ │ │ │ │ │ └── MergeableMergeStrategy.java │ │ │ │ │ ├── lang │ │ │ │ │ └── reflect │ │ │ │ │ │ └── util │ │ │ │ │ │ └── ReflectionUtils.java │ │ │ │ │ ├── xjc │ │ │ │ │ ├── adapters │ │ │ │ │ │ └── XmlAdapterXjcUtils.java │ │ │ │ │ ├── generator │ │ │ │ │ │ └── bean │ │ │ │ │ │ │ └── field │ │ │ │ │ │ │ ├── AbstractField.java │ │ │ │ │ │ │ ├── AbstractFieldWithVar.java │ │ │ │ │ │ │ ├── AbstractListField.java │ │ │ │ │ │ │ ├── AbstractWrapCollectionField.java │ │ │ │ │ │ │ ├── AbstractWrappingField.java │ │ │ │ │ │ │ ├── AdaptingWrappingCollectionField.java │ │ │ │ │ │ │ ├── AdaptingWrappingField.java │ │ │ │ │ │ │ ├── ElementField.java │ │ │ │ │ │ │ ├── JAXBElementNameField.java │ │ │ │ │ │ │ ├── JAXBElementValueField.java │ │ │ │ │ │ │ ├── SingleElementField.java │ │ │ │ │ │ │ ├── SingleEnumValueWrappingField.java │ │ │ │ │ │ │ ├── SingleField.java │ │ │ │ │ │ │ ├── SingleMarshallingField.java │ │ │ │ │ │ │ ├── SingleMarshallingReferenceField.java │ │ │ │ │ │ │ ├── SingleWrappingClassInfoField.java │ │ │ │ │ │ │ ├── SingleWrappingElementField.java │ │ │ │ │ │ │ ├── SingleWrappingField.java │ │ │ │ │ │ │ ├── SingleWrappingReferenceElementInfoField.java │ │ │ │ │ │ │ ├── SingleWrappingReferenceField.java │ │ │ │ │ │ │ ├── SingleWrappingReferenceObjectField.java │ │ │ │ │ │ │ ├── StringField.java │ │ │ │ │ │ │ ├── TransientSingleField.java │ │ │ │ │ │ │ ├── UntypedListField.java │ │ │ │ │ │ │ ├── UntypedListFieldRenderer.java │ │ │ │ │ │ │ ├── UntypedSettableListField.java │ │ │ │ │ │ │ ├── WrappedCollectionField.java │ │ │ │ │ │ │ └── WrappingCollectionField.java │ │ │ │ │ ├── model │ │ │ │ │ │ ├── CClassifier.java │ │ │ │ │ │ ├── CClassifyingVisitor.java │ │ │ │ │ │ ├── CExternalLeafInfo.java │ │ │ │ │ │ ├── CTypeInfoUtils.java │ │ │ │ │ │ ├── DefaultTypeUse.java │ │ │ │ │ │ └── TypeUseUtils.java │ │ │ │ │ └── reader │ │ │ │ │ │ └── TypeUtil.java │ │ │ │ │ ├── xsd │ │ │ │ │ └── util │ │ │ │ │ │ ├── StringUtils.java │ │ │ │ │ │ └── XMLSchemaConstrants.java │ │ │ │ │ └── xsom │ │ │ │ │ ├── SimpleTypeAnalyzer.java │ │ │ │ │ ├── SimpleTypeVisitor.java │ │ │ │ │ └── TypeUtils.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── com.sun.tools.xjc.Plugin │ │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── ejb │ │ │ │ └── strategy │ │ │ │ ├── customizing │ │ │ │ └── impl │ │ │ │ │ └── DefaultCustomizations.xml │ │ │ │ └── naming │ │ │ │ └── impl │ │ │ │ └── ReservedNames.properties │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ ├── annotation │ │ │ │ └── util │ │ │ │ │ └── tests │ │ │ │ │ └── AnnotationUtilsTest.java │ │ │ │ ├── ejb │ │ │ │ └── strategy │ │ │ │ │ └── annotate │ │ │ │ │ └── tests │ │ │ │ │ └── CreateXAnnotationsTest.java │ │ │ │ └── xsom │ │ │ │ └── tests │ │ │ │ ├── SimpleTypesAnalyzerTest.java │ │ │ │ └── TypeUseTest.java │ │ │ └── resources │ │ │ └── org │ │ │ └── jvnet │ │ │ └── hyperjaxb3 │ │ │ └── xsom │ │ │ └── tests │ │ │ └── SimpleTypesAnalyze.xsd │ ├── pom.xml │ ├── roundtrip │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ ├── ejb │ │ │ │ │ └── test │ │ │ │ │ │ ├── AbstractEntityManagerSamplesTest.java │ │ │ │ │ │ ├── AbstractEntityManagerTest.java │ │ │ │ │ │ └── RoundtripTest.java │ │ │ │ │ └── lang │ │ │ │ │ └── builder │ │ │ │ │ └── ExtendedJAXBEqualsStrategy.java │ │ │ └── resources │ │ │ │ └── .placeholder │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ ├── ejb │ │ │ │ ├── cascadedids │ │ │ │ │ └── tests │ │ │ │ │ │ ├── Company.java │ │ │ │ │ │ ├── Department.java │ │ │ │ │ │ └── EntityManagerTest.java │ │ │ │ └── test │ │ │ │ │ └── tests │ │ │ │ │ ├── A.java │ │ │ │ │ ├── B.java │ │ │ │ │ ├── C.java │ │ │ │ │ ├── EntityManagerTest.java │ │ │ │ │ ├── JavaReflectionManagerTest.java │ │ │ │ │ ├── K.java │ │ │ │ │ ├── L.java │ │ │ │ │ ├── M.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── OneTwo.java │ │ │ │ │ ├── PrimitiveItem.java │ │ │ │ │ └── RoundtripTest.java │ │ │ │ ├── hibernate │ │ │ │ └── tests │ │ │ │ │ └── hhh │ │ │ │ │ ├── D.java │ │ │ │ │ ├── E.java │ │ │ │ │ ├── EntityManagerFactoryTest.java │ │ │ │ │ ├── F.java │ │ │ │ │ └── G.java │ │ │ │ ├── lang │ │ │ │ └── builder │ │ │ │ │ └── tests │ │ │ │ │ └── NumberEqualsTest.java │ │ │ │ └── xml │ │ │ │ └── datatype │ │ │ │ └── XMLGregorianCalendarTest.java │ │ │ ├── resources │ │ │ ├── META-INF │ │ │ │ └── persistence.xml │ │ │ ├── log4j.properties │ │ │ └── persistence.properties │ │ │ └── samples │ │ │ ├── sample1.xml │ │ │ ├── sample2.xml │ │ │ ├── sample3.xml │ │ │ └── sample4.xml │ ├── runtime │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ ├── ejb │ │ │ │ └── util │ │ │ │ │ └── EntityUtils.java │ │ │ │ ├── item │ │ │ │ ├── AbstractItemList.java │ │ │ │ ├── AbstractMixedItemList.java │ │ │ │ ├── ConvertedList.java │ │ │ │ ├── Converter.java │ │ │ │ ├── DefaultItemList.java │ │ │ │ ├── DefaultMixedItemList.java │ │ │ │ ├── Item.java │ │ │ │ ├── ItemList.java │ │ │ │ ├── ItemUtils.java │ │ │ │ ├── MixedItem.java │ │ │ │ ├── MixedItemList.java │ │ │ │ └── MixedItemUtils.java │ │ │ │ ├── transform │ │ │ │ └── TransformUtils.java │ │ │ │ └── xml │ │ │ │ ├── XMLConstants.java │ │ │ │ ├── bind │ │ │ │ ├── JAXBContextUtils.java │ │ │ │ ├── JAXBElementUtils.java │ │ │ │ └── annotation │ │ │ │ │ └── adapters │ │ │ │ │ ├── AbstractXMLGregorianCalendarAdapter.java │ │ │ │ │ ├── DurationAsString.java │ │ │ │ │ ├── ElementAsString.java │ │ │ │ │ ├── IdentityAdapter.java │ │ │ │ │ ├── QNameAsString.java │ │ │ │ │ ├── StringListAsString.java │ │ │ │ │ ├── TimeStringAsCalendar.java │ │ │ │ │ ├── XMLGregorianCalendarAsDate.java │ │ │ │ │ ├── XMLGregorianCalendarAsDateTime.java │ │ │ │ │ ├── XMLGregorianCalendarAsGDay.java │ │ │ │ │ ├── XMLGregorianCalendarAsGMonth.java │ │ │ │ │ ├── XMLGregorianCalendarAsGMonthDay.java │ │ │ │ │ ├── XMLGregorianCalendarAsGYear.java │ │ │ │ │ ├── XMLGregorianCalendarAsGYearMonth.java │ │ │ │ │ ├── XMLGregorianCalendarAsTime.java │ │ │ │ │ ├── XmlAdapterConverter.java │ │ │ │ │ └── XmlAdapterUtils.java │ │ │ │ └── datatype │ │ │ │ └── util │ │ │ │ └── XMLGregorianCalendarUtils.java │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ ├── adapters │ │ │ │ └── tests │ │ │ │ │ ├── ReflectionTest.java │ │ │ │ │ └── XmlAdapterUtilsTest.java │ │ │ │ ├── eg │ │ │ │ └── tests │ │ │ │ │ ├── AutoTask.java │ │ │ │ │ ├── Job.java │ │ │ │ │ ├── Node.java │ │ │ │ │ ├── TestWrapping.java │ │ │ │ │ └── UserTask.java │ │ │ │ ├── ejb │ │ │ │ └── util │ │ │ │ │ └── tests │ │ │ │ │ └── EntityUtilsTest.java │ │ │ │ ├── sb │ │ │ │ └── tests │ │ │ │ │ ├── AtributeDefinitionTest.java │ │ │ │ │ ├── AttributeDefinition.java │ │ │ │ │ └── SimpleAttributeDefinition.java │ │ │ │ ├── util │ │ │ │ └── tests │ │ │ │ │ ├── ItemListTest.java │ │ │ │ │ └── StringItem.java │ │ │ │ └── xml │ │ │ │ └── bind │ │ │ │ └── annotation │ │ │ │ └── adapters │ │ │ │ ├── XMLGregorianCalendarAsDateTimeTest.java │ │ │ │ └── XMLGregorianCalendarAsTimeTest.java │ │ │ └── resources │ │ │ └── org │ │ │ └── jvnet │ │ │ └── hyperjaxb3 │ │ │ ├── eg │ │ │ └── tests │ │ │ │ └── test.xml │ │ │ └── sb │ │ │ └── tests │ │ │ ├── attribute.xml │ │ │ └── simpleAttribute.xml │ ├── samples │ │ ├── build-1.5.bat │ │ ├── build-1.6.bat │ │ ├── customerservice-cxf │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── customerservice │ │ │ │ │ │ └── service │ │ │ │ │ │ └── CustomerServiceImpl.java │ │ │ │ ├── resources │ │ │ │ │ ├── com │ │ │ │ │ │ └── example │ │ │ │ │ │ │ └── customerservice │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── applicationContext.xml │ │ │ │ │ └── database.properties │ │ │ │ ├── webapp │ │ │ │ │ └── WEB-INF │ │ │ │ │ │ └── web.xml │ │ │ │ └── wsdl │ │ │ │ │ ├── CustomerService.wsdl │ │ │ │ │ ├── binding.xjb │ │ │ │ │ ├── binding.xml │ │ │ │ │ └── customer.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── customerservice │ │ │ │ │ └── test │ │ │ │ │ ├── ApplicationStartsIT.java │ │ │ │ │ ├── CustomerServiceIT.java │ │ │ │ │ └── RunSampleCustomerService.java │ │ │ │ ├── resources │ │ │ │ ├── com │ │ │ │ │ └── example │ │ │ │ │ │ └── customerservice │ │ │ │ │ │ └── service │ │ │ │ │ │ └── test │ │ │ │ │ │ └── applicationContext.xml │ │ │ │ ├── log4j.properties │ │ │ │ ├── main-web.properties │ │ │ │ └── test-web.properties │ │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ ├── po-customized-eclipselink │ │ │ ├── pom.xml │ │ │ ├── project-build.xml │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── .placeholder │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po-initial │ │ │ ├── build-1.5.bat │ │ │ ├── build-1.6.bat │ │ │ ├── pom.xml │ │ │ ├── project-build.xml │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── .placeholder │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po-maven-jaxb2-plugin │ │ │ ├── build-1.5.bat │ │ │ ├── build-1.6.bat │ │ │ ├── pom.xml │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── pom.xml │ │ ├── src │ │ │ └── main │ │ │ │ └── assembly │ │ │ │ ├── ant-src.xml │ │ │ │ └── maven-src.xml │ │ └── uniprot │ │ │ ├── pom.xml │ │ │ ├── project-build.xml │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ └── resources │ │ │ │ └── uniprot2008_rev1.xsd │ │ │ └── test │ │ │ ├── java │ │ │ └── .placeholder │ │ │ ├── resources │ │ │ ├── log4j.properties │ │ │ └── persistence.properties │ │ │ └── samples │ │ │ └── P01189.xml │ ├── schemas │ │ ├── customizations │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── schemas │ │ │ │ │ │ └── customizations │ │ │ │ │ │ ├── Customizations.java │ │ │ │ │ │ └── Mergeable.java │ │ │ │ └── resources │ │ │ │ │ ├── catalog.cat │ │ │ │ │ ├── config │ │ │ │ │ ├── maven-checks.xml │ │ │ │ │ └── maven-header.txt │ │ │ │ │ ├── customizations.xjb │ │ │ │ │ ├── customizations.xsd │ │ │ │ │ ├── orm │ │ │ │ │ └── orm_3_1.xsd │ │ │ │ │ └── persistence_3_0.xsd │ │ │ │ ├── site │ │ │ │ └── site.xml │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── schemas │ │ │ │ │ └── customizations │ │ │ │ │ └── tests │ │ │ │ │ └── UnmarshalPersistenceTest.java │ │ │ │ └── resources │ │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── ejb │ │ │ │ └── schemas │ │ │ │ └── customizations │ │ │ │ └── tests │ │ │ │ └── persistence[0].xml │ │ ├── persistence │ │ │ ├── orm.diff │ │ │ ├── orm_1_0.xsd │ │ │ ├── orm_2_0.xsd │ │ │ ├── orm_3_0.xsd │ │ │ ├── orm_3_1.xsd │ │ │ ├── persistence_1_0.xsd │ │ │ ├── persistence_2_0.xsd │ │ │ ├── persistence_3_0.xsd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── persistence │ │ │ │ │ ├── jpa3 │ │ │ │ │ ├── JPA3Constants.java │ │ │ │ │ └── JPA3Utils.java │ │ │ │ │ └── util │ │ │ │ │ ├── AttributesUtils.java │ │ │ │ │ ├── PersistenceConstants.java │ │ │ │ │ └── PersistenceUtils.java │ │ │ │ └── resources │ │ │ │ ├── bindings.xjb │ │ │ │ └── persistence │ │ │ │ ├── orm │ │ │ │ └── orm_3_1.xsd │ │ │ │ └── persistence_3_0.xsd │ │ └── pom.xml │ ├── templates │ │ ├── basic │ │ │ ├── pom.xml │ │ │ ├── project-build.xml │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ │ ├── it │ │ │ │ ├── java │ │ │ │ │ └── .placeholder │ │ │ │ ├── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── samples │ │ │ │ │ └── po.xml │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── .placeholder │ │ │ │ └── resources │ │ │ │ │ └── .placeholder │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── .placeholder │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── assembly │ │ │ ├── ant-src.xml │ │ │ └── maven-src.xml │ ├── tests │ │ ├── addressbook │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.xml │ │ │ │ └── 2.xml │ │ ├── ak │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── test.xml │ │ ├── annox │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── any │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── any │ │ │ │ │ └── RunAnyPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.mixed.xml │ │ │ │ ├── 1.xml │ │ │ │ ├── 2.mixed.xml │ │ │ │ ├── 2.xml │ │ │ │ ├── 3.mixed.xml │ │ │ │ ├── 3.xml │ │ │ │ ├── 4.mixed.xml │ │ │ │ ├── 4.xml │ │ │ │ ├── 5.mixed.xml │ │ │ │ ├── 5.xml │ │ │ │ ├── 6.mixed.xml │ │ │ │ └── 6.xml │ │ ├── bibtexml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── bibtexml.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── ccr │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── ccrsample_solventus.xml │ │ ├── cda │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── CDASchemas │ │ │ │ │ ├── cda │ │ │ │ │ │ └── Schemas │ │ │ │ │ │ │ ├── CCD.xsl │ │ │ │ │ │ │ ├── CDA.xsd │ │ │ │ │ │ │ └── POCD_MT000040.xsd │ │ │ │ │ └── processable │ │ │ │ │ │ └── coreschemas │ │ │ │ │ │ ├── NarrativeBlock.xsd │ │ │ │ │ │ ├── datatypes-base.xsd │ │ │ │ │ │ ├── datatypes.xsd │ │ │ │ │ │ └── voc.xsd │ │ │ │ │ └── binding.xjb │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── cda │ │ │ │ │ └── RunCDAPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── SampleCCDDocument.xml │ │ │ │ └── SampleCCRDocument.xml │ │ ├── component-jpa2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── stream.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── componentjpa2 │ │ │ │ │ └── tests │ │ │ │ │ └── TestHyperJaxb.java │ │ │ │ └── resources │ │ │ │ └── tests.xml │ │ ├── component │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── cu-one │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── cuone │ │ │ │ │ └── RunCuonePlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.xml │ │ │ │ ├── 2.xml │ │ │ │ ├── 3.xml │ │ │ │ └── 5.xml │ │ ├── custom-naming │ │ │ ├── extension │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── customnaming │ │ │ │ │ └── naming │ │ │ │ │ └── impl │ │ │ │ │ ├── CustomApplicationContext.java │ │ │ │ │ └── CustomNaming.java │ │ │ ├── pom.xml │ │ │ └── schema │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ └── CustomNamingTest.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── customType │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── customizations │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── config │ │ │ │ │ └── hyperjaxb2.config.xml │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ ├── hyperjaxb2.names.properties │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb2 │ │ │ │ │ └── customizations │ │ │ │ │ └── test │ │ │ │ │ └── RunAddOn.java │ │ │ │ └── samples │ │ │ │ └── .placeholder │ │ ├── dc │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── dc.xsd │ │ │ │ │ ├── dcmitype.xsd │ │ │ │ │ ├── dcterms.xsd │ │ │ │ │ └── qualifieddc.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.xml │ │ │ │ └── 2.xml │ │ ├── derby │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── issues.xsd │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── .placeholder │ │ │ │ ├── 1.xml │ │ │ │ └── issue137.xml │ │ ├── device │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── device.xjb │ │ │ │ │ └── device.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── serversample-trunc.xml │ │ │ │ └── serversample.xml │ │ ├── dl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── test1.xml │ │ ├── dom │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── anySkipCollection.txml │ │ │ │ ├── anySkipSingle.xml │ │ │ │ ├── domCollection.txml │ │ │ │ └── domSingle.xml │ │ ├── dy │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── .placeholder │ │ ├── ebxmlrr │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── XMLSchema.dtd │ │ │ │ │ ├── cms.xsd │ │ │ │ │ ├── datatypes.dtd │ │ │ │ │ ├── jaxbCustomization.xjb │ │ │ │ │ ├── lcm.xsd │ │ │ │ │ ├── query.xsd │ │ │ │ │ ├── rim.xsd │ │ │ │ │ ├── rs.xsd │ │ │ │ │ ├── xml.xsd │ │ │ │ │ └── xmldsig-core-schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── edxl │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── CommonTypes.xsd │ │ │ │ │ ├── binding.xjb │ │ │ │ │ ├── edxl-have-pr05.xsd │ │ │ │ │ ├── geo-oasis.xsd │ │ │ │ │ ├── gml-oasis.xsd │ │ │ │ │ ├── xAL-types.xsd │ │ │ │ │ ├── xAL.xsd │ │ │ │ │ ├── xNL-types.xsd │ │ │ │ │ ├── xNL.xsd │ │ │ │ │ ├── xPIL-types.xsd │ │ │ │ │ ├── xPIL.xsd │ │ │ │ │ ├── xlink-2003-12-31.xsd │ │ │ │ │ └── xlinks.xsd │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ ├── ek │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── Transaction3.0.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── Transaction3.0.xml │ │ ├── embeddable-jpa2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── embeddablejpa2 │ │ │ │ │ └── RunEmbeddableJPA3Plugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.xml │ │ │ │ ├── 2.xml │ │ │ │ ├── 3.xml │ │ │ │ ├── 4.xml │ │ │ │ └── 5.xml │ │ ├── embeddable │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── embeddable │ │ │ │ │ └── RunEmbeddablePlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.xml │ │ │ │ ├── 2.xml │ │ │ │ └── 3.xml │ │ ├── eminq │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── TypesAggregatedSimple.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── tests │ │ │ │ │ └── eminq │ │ │ │ │ └── tests │ │ │ │ │ └── RunEminqPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── TypesAggregatedSimple.xml │ │ ├── enum │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── enums │ │ │ │ │ └── RunEnumsPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.xml │ │ │ │ └── issue143[0].xml │ │ ├── episodes │ │ │ ├── a │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── resources │ │ │ │ │ │ ├── a.xsd │ │ │ │ │ │ └── binding.xjb │ │ │ │ │ └── test │ │ │ │ │ ├── resources │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── persistence.properties │ │ │ │ │ └── samples │ │ │ │ │ └── 1.xml │ │ │ ├── b │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ └── resources │ │ │ │ │ │ ├── a.xsd │ │ │ │ │ │ ├── b.xsd │ │ │ │ │ │ ├── binding.xjb │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── episodes │ │ │ │ │ │ └── b │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── RunEpisodesBPlugin.java │ │ │ │ │ ├── resources │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── persistence.properties │ │ │ │ │ └── samples │ │ │ │ │ └── 1.xml │ │ │ └── pom.xml │ │ ├── equals-builder │ │ │ ├── .project │ │ │ ├── builder │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── equalsbuilder │ │ │ │ │ └── HelloWorldEqualsStrategy.java │ │ │ ├── pom.xml │ │ │ └── schema │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── fpml-pretrade │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── example-extension-5-0.xsd │ │ │ │ │ ├── fpml-asset-5-0.xsd │ │ │ │ │ ├── fpml-bond-option-5-0.xsd │ │ │ │ │ ├── fpml-cd-5-0.xsd │ │ │ │ │ ├── fpml-correlation-swaps-5-0.xsd │ │ │ │ │ ├── fpml-dividend-swaps-5-0.xsd │ │ │ │ │ ├── fpml-doc-5-0.xsd │ │ │ │ │ ├── fpml-enum-5-0.xsd │ │ │ │ │ ├── fpml-eq-shared-5-0.xsd │ │ │ │ │ ├── fpml-eqd-5-0.xsd │ │ │ │ │ ├── fpml-fx-5-0.xsd │ │ │ │ │ ├── fpml-ird-5-0.xsd │ │ │ │ │ ├── fpml-main-5-0.xsd │ │ │ │ │ ├── fpml-msg-5-0.xsd │ │ │ │ │ ├── fpml-option-shared-5-0.xsd │ │ │ │ │ ├── fpml-pretrade-5-0.xsd │ │ │ │ │ ├── fpml-reconciliation-5-0.xsd │ │ │ │ │ ├── fpml-return-swaps-5-0.xsd │ │ │ │ │ ├── fpml-shared-5-0.xsd │ │ │ │ │ ├── fpml-trade-notification-5-0.xsd │ │ │ │ │ ├── fpml-tradeexec-5-0.xsd │ │ │ │ │ ├── fpml-variance-swaps-5-0.xsd │ │ │ │ │ └── xmldsig-core-schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── eqvs-ex01-variance-swap-index.xml │ │ │ │ ├── eqvs-ex02-variance-swap-single-stock.xml │ │ │ │ ├── eqvs-ex03-conditional-variance-swap.xml │ │ │ │ └── eqvs-ex04-variance-swap-option-index.xml │ │ ├── idSymbolSpace │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── ids │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── ids │ │ │ │ │ └── RunIdsPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── 1.xml │ │ │ │ └── 2.xml │ │ ├── ims-eportfolio │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── imsassert_v1p0.xsd │ │ │ │ │ ├── imsparticipation_v1p0.xsd │ │ │ │ │ ├── imsportfoliocp_v1p0.xsd │ │ │ │ │ ├── imsreflex_v1p0.xsd │ │ │ │ │ └── imsrubric_v1p0.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── Assertion.xml │ │ │ │ ├── Identification.xml │ │ │ │ ├── Product.xml │ │ │ │ ├── Reflexion.xml │ │ │ │ ├── Relationship.xml │ │ │ │ ├── imsmanifest.xml.1 │ │ │ │ ├── minimalIdentification.xml │ │ │ │ ├── minimalProduct.xml │ │ │ │ └── uw_stout_rubric.xml │ │ ├── ims-lip │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── imslip_v1p0.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── accs_001.xml │ │ │ │ ├── accs_lang_001.xml │ │ │ │ ├── accs_pref_001.xml │ │ │ │ ├── actv_001.xml │ │ │ │ ├── actv_defn_001.xml │ │ │ │ ├── actv_eval_001.xml │ │ │ │ ├── actv_lref_001.xml │ │ │ │ ├── actv_prod_001.xml │ │ │ │ ├── actv_test_001.xml │ │ │ │ ├── affl_001.xml │ │ │ │ ├── comp_001.xml │ │ │ │ ├── engresume.xml │ │ │ │ ├── goal_001.xml │ │ │ │ ├── iden_001.xml │ │ │ │ ├── iden_addr_001.xml │ │ │ │ ├── iden_agnt_001.xml │ │ │ │ ├── iden_cinf_001.xml │ │ │ │ ├── iden_demo_001.xml │ │ │ │ ├── iden_fnme_001.xml │ │ │ │ ├── iden_name_001.xml │ │ │ │ ├── intt_001.xml │ │ │ │ ├── isrmapv1.xml │ │ │ │ ├── qcln_001.xml │ │ │ │ ├── rltp_001.xml │ │ │ │ ├── skey_001.xml │ │ │ │ └── trns_001.xml │ │ ├── ioda │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── ioda_standard_export_v1.16.xsd │ │ │ │ │ ├── ioda_styles.xsd │ │ │ │ │ └── iso-3166-1_alpha-2.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── .placeholder │ │ │ │ └── 900099.xml │ │ ├── issues-el │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── issueHJIII31[0].xml │ │ ├── issues-jpa2 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── issuesjpa2 │ │ │ │ │ ├── HJIII73Test.java │ │ │ │ │ ├── RoundtripTest.java │ │ │ │ │ └── RunIssuesJPA2Plugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── HJIII-63[0].xml │ │ │ │ ├── HJIII-63[1].xml │ │ │ │ ├── HJIII-63[2].xml │ │ │ │ ├── HJIII-63[3].xml │ │ │ │ ├── HJIII-63[4].xml │ │ │ │ ├── HJIII-63[5].xml │ │ │ │ ├── HJIII-63[6].xml │ │ │ │ ├── HJIII-63[7].xml │ │ │ │ ├── HJIII-73[0].xml │ │ │ │ ├── HJIII-91[0].xml │ │ │ │ └── HJIII-91[1].xml │ │ ├── issues-pre │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── ejb │ │ │ │ └── tests │ │ │ │ └── issues │ │ │ │ └── pre │ │ │ │ └── IssueHJIII45SuperClass.java │ │ ├── issues │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── issues │ │ │ │ │ │ └── MyIssueXXXType.java │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ ├── schema-ignored.xsd │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── issues │ │ │ │ │ ├── IssueHJIII100Test.java │ │ │ │ │ ├── IssueHJIII28Test.java │ │ │ │ │ ├── IssueHJIII32Test.java │ │ │ │ │ ├── IssueHJIII35Test.java │ │ │ │ │ ├── IssueHJIII41Test.java │ │ │ │ │ ├── IssueHJIII94Test.java │ │ │ │ │ ├── RoundtripTest.java │ │ │ │ │ └── RunIssuesPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ ├── samples │ │ │ │ ├── .placeholder │ │ │ │ ├── issue108[0].xml │ │ │ │ ├── issue129[0].xml │ │ │ │ ├── issue131[0].xml │ │ │ │ ├── issue138.xml │ │ │ │ ├── issue140[0].xml │ │ │ │ ├── issue140[1].xml │ │ │ │ ├── issue140[2].xml │ │ │ │ ├── issue142[0].xml │ │ │ │ ├── issue44One.xml │ │ │ │ ├── issue44Six[0].xml │ │ │ │ ├── issue44Six[1].xml │ │ │ │ ├── issue44five.xml │ │ │ │ ├── issue44four.xml │ │ │ │ ├── issue44three.xml │ │ │ │ ├── issue44two.xml │ │ │ │ ├── issue53[0].xml │ │ │ │ ├── issue66.xml │ │ │ │ ├── issue75.xml │ │ │ │ ├── issue86X1.xml │ │ │ │ ├── issue91.xml │ │ │ │ ├── issue92.xml │ │ │ │ ├── issue93.xml │ │ │ │ ├── issueHJIII26[0].xml │ │ │ │ ├── issueHJIII40[0].xml │ │ │ │ ├── issueHJIII41[0].xml │ │ │ │ ├── issueHJIII48[0].xml │ │ │ │ ├── issueHJIII48[1].xml │ │ │ │ ├── issueHJIII48[2].xml │ │ │ │ ├── issueHJIII48[3].xml │ │ │ │ ├── issueHJIII48[4].xml │ │ │ │ ├── issueHJIII86[0].xml │ │ │ │ └── issueHJIII94[0].xml │ │ │ │ └── tobefixed │ │ │ │ ├── issue112[0].xml │ │ │ │ └── issueHJIII92[0].xml │ │ ├── nml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── NewsML_1.2.xsd │ │ │ │ │ ├── XMLSchema.dtd │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ ├── datatypes.dtd │ │ │ │ │ └── xml.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── nml │ │ │ │ │ └── RunNmlPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── NewsML-AFP-mmd-sample.xml │ │ │ │ ├── NewsML-AFP-mmd-sample[1].xml │ │ │ │ ├── NewsML-AFP-photo-sample.xml │ │ │ │ ├── NewsML-AFP-text-sample.xml │ │ │ │ ├── NewsML-AFP-topnews-index-sample.xml │ │ │ │ └── samplenewsml.xml │ │ ├── nokis │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── fitgk10183.xml │ │ │ │ ├── fitgk10184.xml │ │ │ │ ├── nokis09162.xml │ │ │ │ ├── nokis18804.xml │ │ │ │ ├── npash40938.xml │ │ │ │ ├── npash48009.xml │ │ │ │ ├── plang74211.xml │ │ │ │ ├── wsdnw00303.xml │ │ │ │ └── wsdnw11987.xml │ │ ├── one │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ ├── schema.xsd │ │ │ │ │ └── schema.xsd-old │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── one │ │ │ │ │ └── RunOnePlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── base.xml │ │ │ │ ├── complexTypes.xml │ │ │ │ ├── customizedId.xml │ │ │ │ ├── customizedIdNillable.xml │ │ │ │ ├── domTypes.xml │ │ │ │ ├── enumTypes.xml │ │ │ │ ├── extended.xml │ │ │ │ ├── issue57.xml │ │ │ │ ├── issue58.xml │ │ │ │ ├── issue61.xml │ │ │ │ ├── issue62.xml │ │ │ │ ├── mixedHeteroReference.xml │ │ │ │ ├── simpleCollectionTypes.xml │ │ │ │ ├── simpleTypes-1.5.xml │ │ │ │ └── simpleTypes-1.6.xml │ │ ├── onix30 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── ONIX_BookProduct_3.0_reference.xsd │ │ │ │ │ ├── ONIX_BookProduct_CodeLists.xsd │ │ │ │ │ ├── ONIX_XHTML_Subset.xs │ │ │ │ │ ├── ONIX_XHTML_Subset.xsd │ │ │ │ │ └── binding.xjb │ │ │ │ └── test │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ ├── ota │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── _2008A_XML │ │ │ │ │ ├── OTA_AirAvailRQ.xml │ │ │ │ │ ├── OTA_AirAvailRQ.xsd │ │ │ │ │ ├── OTA_AirAvailRS.xml │ │ │ │ │ ├── OTA_AirAvailRS.xsd │ │ │ │ │ ├── OTA_AirBookModifyRQ.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ.xsd │ │ │ │ │ ├── OTA_AirBookModifyRQ10.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ2.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ3.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ4.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ5.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ6.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ7.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ8.xml │ │ │ │ │ ├── OTA_AirBookModifyRQ9.xml │ │ │ │ │ ├── OTA_AirBookRQ.xml │ │ │ │ │ ├── OTA_AirBookRQ.xsd │ │ │ │ │ ├── OTA_AirBookRS.xml │ │ │ │ │ ├── OTA_AirBookRS.xsd │ │ │ │ │ ├── OTA_AirBookRS10.xml │ │ │ │ │ ├── OTA_AirBookRS11.xml │ │ │ │ │ ├── OTA_AirBookRS2.xml │ │ │ │ │ ├── OTA_AirBookRS3.xml │ │ │ │ │ ├── OTA_AirBookRS4.xml │ │ │ │ │ ├── OTA_AirBookRS5.xml │ │ │ │ │ ├── OTA_AirBookRS6.xml │ │ │ │ │ ├── OTA_AirBookRS7.xml │ │ │ │ │ ├── OTA_AirBookRS8.xml │ │ │ │ │ ├── OTA_AirBookRS9.xml │ │ │ │ │ ├── OTA_AirCheckIn.xsd │ │ │ │ │ ├── OTA_AirCheckInRQ.xml │ │ │ │ │ ├── OTA_AirCheckInRQ.xsd │ │ │ │ │ ├── OTA_AirCheckInRQ2.xml │ │ │ │ │ ├── OTA_AirCheckInRQ3.xml │ │ │ │ │ ├── OTA_AirCheckInRS.xml │ │ │ │ │ ├── OTA_AirCheckInRS.xsd │ │ │ │ │ ├── OTA_AirCheckInRS2.xml │ │ │ │ │ ├── OTA_AirCheckInRS3.xml │ │ │ │ │ ├── OTA_AirCommonTypes.xsd │ │ │ │ │ ├── OTA_AirDemandTicketRQ.xml │ │ │ │ │ ├── OTA_AirDemandTicketRQ.xsd │ │ │ │ │ ├── OTA_AirDemandTicketRQ2.xml │ │ │ │ │ ├── OTA_AirDemandTicketRS.xml │ │ │ │ │ ├── OTA_AirDemandTicketRS.xsd │ │ │ │ │ ├── OTA_AirDemandTicketRS2.xml │ │ │ │ │ ├── OTA_AirDetailsRQ.xml │ │ │ │ │ ├── OTA_AirDetailsRQ.xsd │ │ │ │ │ ├── OTA_AirDetailsRS.xml │ │ │ │ │ ├── OTA_AirDetailsRS.xsd │ │ │ │ │ ├── OTA_AirDisplayQueueRS.xml │ │ │ │ │ ├── OTA_AirDisplayQueueRS.xsd │ │ │ │ │ ├── OTA_AirDisplayQueueRS2.xml │ │ │ │ │ ├── OTA_AirFareDisplayRQ.xml │ │ │ │ │ ├── OTA_AirFareDisplayRQ.xsd │ │ │ │ │ ├── OTA_AirFareDisplayRQ2.xml │ │ │ │ │ ├── OTA_AirFareDisplayRS.xml │ │ │ │ │ ├── OTA_AirFareDisplayRS.xsd │ │ │ │ │ ├── OTA_AirFareDisplayRS2.xml │ │ │ │ │ ├── OTA_AirFlifoRQ.xml │ │ │ │ │ ├── OTA_AirFlifoRQ.xsd │ │ │ │ │ ├── OTA_AirFlifoRQ2.xml │ │ │ │ │ ├── OTA_AirFlifoRS.xml │ │ │ │ │ ├── OTA_AirFlifoRS.xsd │ │ │ │ │ ├── OTA_AirFlifoRS2.xml │ │ │ │ │ ├── OTA_AirLowFareSearchRQ.xml │ │ │ │ │ ├── OTA_AirLowFareSearchRQ.xsd │ │ │ │ │ ├── OTA_AirLowFareSearchRQ2.xml │ │ │ │ │ ├── OTA_AirLowFareSearchRS.xml │ │ │ │ │ ├── OTA_AirLowFareSearchRS.xsd │ │ │ │ │ ├── OTA_AirLowFareSearchRS2.xml │ │ │ │ │ ├── OTA_AirPreferences.xsd │ │ │ │ │ ├── OTA_AirPriceRQ.xml │ │ │ │ │ ├── OTA_AirPriceRQ.xsd │ │ │ │ │ ├── OTA_AirPriceRS.xml │ │ │ │ │ ├── OTA_AirPriceRS.xsd │ │ │ │ │ ├── OTA_AirRulesRQ.xml │ │ │ │ │ ├── OTA_AirRulesRQ.xsd │ │ │ │ │ ├── OTA_AirRulesRS.xml │ │ │ │ │ ├── OTA_AirRulesRS.xsd │ │ │ │ │ ├── OTA_AirScheduleRQ.xml │ │ │ │ │ ├── OTA_AirScheduleRQ.xsd │ │ │ │ │ ├── OTA_AirScheduleRS.xml │ │ │ │ │ ├── OTA_AirScheduleRS.xsd │ │ │ │ │ ├── OTA_AirSeatMapRQ.xml │ │ │ │ │ ├── OTA_AirSeatMapRQ.xsd │ │ │ │ │ ├── OTA_AirSeatMapRQ2.xml │ │ │ │ │ ├── OTA_AirSeatMapRS.xml │ │ │ │ │ ├── OTA_AirSeatMapRS.xsd │ │ │ │ │ ├── OTA_AirSeatMapRS2.xml │ │ │ │ │ ├── OTA_AuthorizationRQ.xml │ │ │ │ │ ├── OTA_AuthorizationRQ.xsd │ │ │ │ │ ├── OTA_AuthorizationRQ2.xml │ │ │ │ │ ├── OTA_AuthorizationRQ3.xml │ │ │ │ │ ├── OTA_AuthorizationRQ4.xml │ │ │ │ │ ├── OTA_AuthorizationRQ5.xml │ │ │ │ │ ├── OTA_AuthorizationRQ6.xml │ │ │ │ │ ├── OTA_AuthorizationRS.xml │ │ │ │ │ ├── OTA_AuthorizationRS.xsd │ │ │ │ │ ├── OTA_AuthorizationRS2.xml │ │ │ │ │ ├── OTA_AuthorizationRS3.xml │ │ │ │ │ ├── OTA_AuthorizationRS4.xml │ │ │ │ │ ├── OTA_AuthorizationRS5.xml │ │ │ │ │ ├── OTA_AuthorizationRS6.xml │ │ │ │ │ ├── OTA_CancelRQ.xml │ │ │ │ │ ├── OTA_CancelRQ.xsd │ │ │ │ │ ├── OTA_CancelRQ2.xml │ │ │ │ │ ├── OTA_CancelRS.xml │ │ │ │ │ ├── OTA_CancelRS.xsd │ │ │ │ │ ├── OTA_CancelRS2.xml │ │ │ │ │ ├── OTA_CommonPrefs.xsd │ │ │ │ │ ├── OTA_CommonTypes.xsd │ │ │ │ │ ├── OTA_CruiseBookRQ.xml │ │ │ │ │ ├── OTA_CruiseBookRQ.xsd │ │ │ │ │ ├── OTA_CruiseBookRS.xml │ │ │ │ │ ├── OTA_CruiseBookRS.xsd │ │ │ │ │ ├── OTA_CruiseBookingDocumentRQ.xml │ │ │ │ │ ├── OTA_CruiseBookingDocumentRQ.xsd │ │ │ │ │ ├── OTA_CruiseBookingDocumentRQ2.xml │ │ │ │ │ ├── OTA_CruiseBookingDocumentRS.xml │ │ │ │ │ ├── OTA_CruiseBookingDocumentRS.xsd │ │ │ │ │ ├── OTA_CruiseBookingDocumentRS2.xml │ │ │ │ │ ├── OTA_CruiseBookingHistoryRS.xml │ │ │ │ │ ├── OTA_CruiseBookingHistoryRS.xsd │ │ │ │ │ ├── OTA_CruiseBookingHistoryRS2.xml │ │ │ │ │ ├── OTA_CruiseBookingHistoryRS3.xml │ │ │ │ │ ├── OTA_CruiseCabinAvailRQ.xml │ │ │ │ │ ├── OTA_CruiseCabinAvailRQ.xsd │ │ │ │ │ ├── OTA_CruiseCabinAvailRS.xml │ │ │ │ │ ├── OTA_CruiseCabinAvailRS.xsd │ │ │ │ │ ├── OTA_CruiseCabinAvailRS2.xml │ │ │ │ │ ├── OTA_CruiseCabinHoldRQ.xml │ │ │ │ │ ├── OTA_CruiseCabinHoldRQ.xsd │ │ │ │ │ ├── OTA_CruiseCabinHoldRS.xml │ │ │ │ │ ├── OTA_CruiseCabinHoldRS.xsd │ │ │ │ │ ├── OTA_CruiseCabinHoldRS2.xml │ │ │ │ │ ├── OTA_CruiseCabinUnholdRQ.xml │ │ │ │ │ ├── OTA_CruiseCabinUnholdRQ.xsd │ │ │ │ │ ├── OTA_CruiseCabinUnholdRS.xml │ │ │ │ │ ├── OTA_CruiseCabinUnholdRS.xsd │ │ │ │ │ ├── OTA_CruiseCancellationPricingRQ.xml │ │ │ │ │ ├── OTA_CruiseCancellationPricingRQ.xsd │ │ │ │ │ ├── OTA_CruiseCancellationPricingRS.xml │ │ │ │ │ ├── OTA_CruiseCancellationPricingRS.xsd │ │ │ │ │ ├── OTA_CruiseCategoryAvailRQ.xml │ │ │ │ │ ├── OTA_CruiseCategoryAvailRQ.xsd │ │ │ │ │ ├── OTA_CruiseCategoryAvailRS.xml │ │ │ │ │ ├── OTA_CruiseCategoryAvailRS.xsd │ │ │ │ │ ├── OTA_CruiseCommonTypes.xsd │ │ │ │ │ ├── OTA_CruiseDiningAvailRQ.xml │ │ │ │ │ ├── OTA_CruiseDiningAvailRQ.xsd │ │ │ │ │ ├── OTA_CruiseDiningAvailRS.xml │ │ │ │ │ ├── OTA_CruiseDiningAvailRS.xsd │ │ │ │ │ ├── OTA_CruiseFareAvailRQ.xml │ │ │ │ │ ├── OTA_CruiseFareAvailRQ.xsd │ │ │ │ │ ├── OTA_CruiseFareAvailRS.xml │ │ │ │ │ ├── OTA_CruiseFareAvailRS.xsd │ │ │ │ │ ├── OTA_CruiseFastSellRQ.xml │ │ │ │ │ ├── OTA_CruiseFastSellRQ.xsd │ │ │ │ │ ├── OTA_CruiseInfoRQ.xml │ │ │ │ │ ├── OTA_CruiseInfoRQ.xsd │ │ │ │ │ ├── OTA_CruiseInfoRQ2.xml │ │ │ │ │ ├── OTA_CruiseInfoRS.xml │ │ │ │ │ ├── OTA_CruiseInfoRS.xsd │ │ │ │ │ ├── OTA_CruiseInfoRS2.xml │ │ │ │ │ ├── OTA_CruiseItineraryDescRQ.xml │ │ │ │ │ ├── OTA_CruiseItineraryDescRQ.xsd │ │ │ │ │ ├── OTA_CruiseItineraryDescRS.xml │ │ │ │ │ ├── OTA_CruiseItineraryDescRS.xsd │ │ │ │ │ ├── OTA_CruisePNR_UpdateNotifRQ.xml │ │ │ │ │ ├── OTA_CruisePNR_UpdateNotifRQ.xsd │ │ │ │ │ ├── OTA_CruisePNR_UpdateNotifRS.xml │ │ │ │ │ ├── OTA_CruisePNR_UpdateNotifRS.xsd │ │ │ │ │ ├── OTA_CruisePaymentRQ.xml │ │ │ │ │ ├── OTA_CruisePaymentRQ.xsd │ │ │ │ │ ├── OTA_CruisePaymentRS.xml │ │ │ │ │ ├── OTA_CruisePaymentRS.xsd │ │ │ │ │ ├── OTA_CruisePkgAvailRQ.xml │ │ │ │ │ ├── OTA_CruisePkgAvailRQ.xsd │ │ │ │ │ ├── OTA_CruisePkgAvailRS.xml │ │ │ │ │ ├── OTA_CruisePkgAvailRS.xsd │ │ │ │ │ ├── OTA_CruisePriceBookingRQ.xml │ │ │ │ │ ├── OTA_CruisePriceBookingRQ.xsd │ │ │ │ │ ├── OTA_CruisePriceBookingRS.xml │ │ │ │ │ ├── OTA_CruisePriceBookingRS.xsd │ │ │ │ │ ├── OTA_CruiseSailAvailRQ.xml │ │ │ │ │ ├── OTA_CruiseSailAvailRQ.xsd │ │ │ │ │ ├── OTA_CruiseSailAvailRQ2.xml │ │ │ │ │ ├── OTA_CruiseSailAvailRS.xml │ │ │ │ │ ├── OTA_CruiseSailAvailRS.xsd │ │ │ │ │ ├── OTA_CruiseSailAvailRS2.xml │ │ │ │ │ ├── OTA_CruiseShorexAvailRQ.xml │ │ │ │ │ ├── OTA_CruiseShorexAvailRQ.xsd │ │ │ │ │ ├── OTA_CruiseShorexAvailRS.xml │ │ │ │ │ ├── OTA_CruiseShorexAvailRS.xsd │ │ │ │ │ ├── OTA_CruiseSpecialServiceAvailRQ.xml │ │ │ │ │ ├── OTA_CruiseSpecialServiceAvailRQ.xsd │ │ │ │ │ ├── OTA_CruiseSpecialServiceAvailRS.xml │ │ │ │ │ ├── OTA_CruiseSpecialServiceAvailRS.xsd │ │ │ │ │ ├── OTA_DeleteRQ.xml │ │ │ │ │ ├── OTA_DeleteRQ.xsd │ │ │ │ │ ├── OTA_DeleteRS.xml │ │ │ │ │ ├── OTA_DeleteRS.xsd │ │ │ │ │ ├── OTA_DestActivityCapabilitiesRQ.xml │ │ │ │ │ ├── OTA_DestActivityCapabilitiesRQ.xsd │ │ │ │ │ ├── OTA_DestActivityCapabilitiesRS.xml │ │ │ │ │ ├── OTA_DestActivityCapabilitiesRS.xsd │ │ │ │ │ ├── OTA_DestActivityResRQ.xml │ │ │ │ │ ├── OTA_DestActivityResRQ.xsd │ │ │ │ │ ├── OTA_DestActivityResRS.xml │ │ │ │ │ ├── OTA_DestActivityResRS.xsd │ │ │ │ │ ├── OTA_DestinationActivity.xsd │ │ │ │ │ ├── OTA_ErrorRS.xsd │ │ │ │ │ ├── OTA_FileAttachmentNotifRQ.xml │ │ │ │ │ ├── OTA_FileAttachmentNotifRQ.xsd │ │ │ │ │ ├── OTA_FileAttachmentNotifRS.xml │ │ │ │ │ ├── OTA_FileAttachmentNotifRS.xsd │ │ │ │ │ ├── OTA_GolfCommonTypes.xsd │ │ │ │ │ ├── OTA_GolfCourseAvailRQ.xml │ │ │ │ │ ├── OTA_GolfCourseAvailRQ.xsd │ │ │ │ │ ├── OTA_GolfCourseAvailRS.xml │ │ │ │ │ ├── OTA_GolfCourseAvailRS.xsd │ │ │ │ │ ├── OTA_GolfCourseResRQ.xml │ │ │ │ │ ├── OTA_GolfCourseResRQ.xsd │ │ │ │ │ ├── OTA_GolfCourseResRS.xml │ │ │ │ │ ├── OTA_GolfCourseResRS.xsd │ │ │ │ │ ├── OTA_GolfCourseSearchRQ.xml │ │ │ │ │ ├── OTA_GolfCourseSearchRQ.xsd │ │ │ │ │ ├── OTA_GolfCourseSearchRS.xml │ │ │ │ │ ├── OTA_GolfCourseSearchRS.xsd │ │ │ │ │ ├── OTA_HotelAvailNotifRQ.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelAvailNotifRQ2.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRQ3.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRQ4.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRQ5.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRQ6.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRS.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRS.xsd │ │ │ │ │ ├── OTA_HotelAvailNotifRS2.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRS3.xml │ │ │ │ │ ├── OTA_HotelAvailNotifRS4.xml │ │ │ │ │ ├── OTA_HotelAvailRQ.xml │ │ │ │ │ ├── OTA_HotelAvailRQ.xsd │ │ │ │ │ ├── OTA_HotelAvailRS.xml │ │ │ │ │ ├── OTA_HotelAvailRS.xsd │ │ │ │ │ ├── OTA_HotelBookingRuleNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelBookingRuleNotifRS.xsd │ │ │ │ │ ├── OTA_HotelBookingRuleRQ.xml │ │ │ │ │ ├── OTA_HotelBookingRuleRQ.xsd │ │ │ │ │ ├── OTA_HotelBookingRuleRS.xml │ │ │ │ │ ├── OTA_HotelBookingRuleRS.xsd │ │ │ │ │ ├── OTA_HotelCommNotifRQ.xml │ │ │ │ │ ├── OTA_HotelCommNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelCommNotifRS.xml │ │ │ │ │ ├── OTA_HotelCommNotifRS.xsd │ │ │ │ │ ├── OTA_HotelCommonTypes.xsd │ │ │ │ │ ├── OTA_HotelContentDescription.xsd │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRQ.xml │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRQ2.xml │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRQ3.xml │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRS.xml │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRS.xsd │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRS2.xml │ │ │ │ │ ├── OTA_HotelDescriptiveContentNotifRS3.xml │ │ │ │ │ ├── OTA_HotelDescriptiveInfoRQ.xml │ │ │ │ │ ├── OTA_HotelDescriptiveInfoRQ.xsd │ │ │ │ │ ├── OTA_HotelDescriptiveInfoRQ2.xml │ │ │ │ │ ├── OTA_HotelDescriptiveInfoRS.xml │ │ │ │ │ ├── OTA_HotelDescriptiveInfoRS.xsd │ │ │ │ │ ├── OTA_HotelDescriptiveInfoRS2.xml │ │ │ │ │ ├── OTA_HotelEvent.xsd │ │ │ │ │ ├── OTA_HotelEventRQ.xml │ │ │ │ │ ├── OTA_HotelEventRQ.xsd │ │ │ │ │ ├── OTA_HotelEventRQ2.xml │ │ │ │ │ ├── OTA_HotelEventRS.xml │ │ │ │ │ ├── OTA_HotelEventRS.xsd │ │ │ │ │ ├── OTA_HotelEventRS2.xml │ │ │ │ │ ├── OTA_HotelGetMsgRQ.xsd │ │ │ │ │ ├── OTA_HotelGetMsgRS.xsd │ │ │ │ │ ├── OTA_HotelInvAdjustRQ.xsd │ │ │ │ │ ├── OTA_HotelInvAdjustRS.xsd │ │ │ │ │ ├── OTA_HotelInvBlockNotifRQ.xml │ │ │ │ │ ├── OTA_HotelInvBlockNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelInvBlockNotifRS.xml │ │ │ │ │ ├── OTA_HotelInvBlockNotifRS.xsd │ │ │ │ │ ├── OTA_HotelInvCountNotifRQ.xml │ │ │ │ │ ├── OTA_HotelInvCountNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelInvCountNotifRQ2.xml │ │ │ │ │ ├── OTA_HotelInvCountNotifRS.xml │ │ │ │ │ ├── OTA_HotelInvCountNotifRS.xsd │ │ │ │ │ ├── OTA_HotelInvCountNotifRS2.xml │ │ │ │ │ ├── OTA_HotelInvNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelInvNotifRS.xsd │ │ │ │ │ ├── OTA_HotelInvSyncRQ.xsd │ │ │ │ │ ├── OTA_HotelInvSyncRS.xsd │ │ │ │ │ ├── OTA_HotelPreferences.xsd │ │ │ │ │ ├── OTA_HotelRFP.xsd │ │ │ │ │ ├── OTA_HotelRFP_MeetingNotifRQ.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelRFP_MeetingNotifRQ2.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingNotifRQ3.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingNotifRS.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingNotifRS.xsd │ │ │ │ │ ├── OTA_HotelRFP_MeetingNotifRS2.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingRQ.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingRQ.xsd │ │ │ │ │ ├── OTA_HotelRFP_MeetingRQ2.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingRQ3.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingRS.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingRS.xsd │ │ │ │ │ ├── OTA_HotelRFP_MeetingRS2.xml │ │ │ │ │ ├── OTA_HotelRFP_MeetingRS3.xml │ │ │ │ │ ├── OTA_HotelRFP_TransientNotifRQ.xml │ │ │ │ │ ├── OTA_HotelRFP_TransientNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelRFP_TransientNotifRS.xml │ │ │ │ │ ├── OTA_HotelRFP_TransientNotifRS.xsd │ │ │ │ │ ├── OTA_HotelRFP_TransientRQ.xml │ │ │ │ │ ├── OTA_HotelRFP_TransientRQ.xsd │ │ │ │ │ ├── OTA_HotelRFP_TransientRS.xml │ │ │ │ │ ├── OTA_HotelRFP_TransientRS.xsd │ │ │ │ │ ├── OTA_HotelRateAmountNotifRQ.xml │ │ │ │ │ ├── OTA_HotelRateAmountNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelRateAmountNotifRS.xml │ │ │ │ │ ├── OTA_HotelRateAmountNotifRS.xsd │ │ │ │ │ ├── OTA_HotelRatePlan.xsd │ │ │ │ │ ├── OTA_HotelRatePlanNotifRQ.xml │ │ │ │ │ ├── OTA_HotelRatePlanNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelRatePlanNotifRQ2.xml │ │ │ │ │ ├── OTA_HotelRatePlanNotifRQ3.xml │ │ │ │ │ ├── OTA_HotelRatePlanNotifRS.xml │ │ │ │ │ ├── OTA_HotelRatePlanNotifRS.xsd │ │ │ │ │ ├── OTA_HotelRatePlanNotifRS2.xml │ │ │ │ │ ├── OTA_HotelRatePlanNotifRS3.xml │ │ │ │ │ ├── OTA_HotelRatePlanRQ.xml │ │ │ │ │ ├── OTA_HotelRatePlanRQ.xsd │ │ │ │ │ ├── OTA_HotelRatePlanRQ2.xml │ │ │ │ │ ├── OTA_HotelRatePlanRQ3.xml │ │ │ │ │ ├── OTA_HotelRatePlanRQ4.xml │ │ │ │ │ ├── OTA_HotelRatePlanRQ5.xml │ │ │ │ │ ├── OTA_HotelRatePlanRQ6.xml │ │ │ │ │ ├── OTA_HotelRatePlanRQ7.xml │ │ │ │ │ ├── OTA_HotelRatePlanRS.xml │ │ │ │ │ ├── OTA_HotelRatePlanRS.xsd │ │ │ │ │ ├── OTA_HotelRatePlanRS2.xml │ │ │ │ │ ├── OTA_HotelRatePlanRS3.xml │ │ │ │ │ ├── OTA_HotelRatePlanRS4.xml │ │ │ │ │ ├── OTA_HotelRatePlanRS5.xml │ │ │ │ │ ├── OTA_HotelRatePlanRS6.xml │ │ │ │ │ ├── OTA_HotelRatePlanRS7.xml │ │ │ │ │ ├── OTA_HotelResModifyNotifRQ.xml │ │ │ │ │ ├── OTA_HotelResModifyNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelResModifyNotifRS.xml │ │ │ │ │ ├── OTA_HotelResModifyNotifRS.xsd │ │ │ │ │ ├── OTA_HotelResModifyRQ.xml │ │ │ │ │ ├── OTA_HotelResModifyRQ.xsd │ │ │ │ │ ├── OTA_HotelResModifyRS.xml │ │ │ │ │ ├── OTA_HotelResModifyRS.xsd │ │ │ │ │ ├── OTA_HotelResNotifRQ.xml │ │ │ │ │ ├── OTA_HotelResNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelResNotifRS.xml │ │ │ │ │ ├── OTA_HotelResNotifRS.xsd │ │ │ │ │ ├── OTA_HotelResRQ.xml │ │ │ │ │ ├── OTA_HotelResRQ.xsd │ │ │ │ │ ├── OTA_HotelResRS.xml │ │ │ │ │ ├── OTA_HotelResRS.xsd │ │ │ │ │ ├── OTA_HotelReservation.xsd │ │ │ │ │ ├── OTA_HotelRoomListRQ.xml │ │ │ │ │ ├── OTA_HotelRoomListRQ.xsd │ │ │ │ │ ├── OTA_HotelRoomListRQ2.xml │ │ │ │ │ ├── OTA_HotelRoomListRS.xml │ │ │ │ │ ├── OTA_HotelRoomListRS.xsd │ │ │ │ │ ├── OTA_HotelRoomListRS2.xml │ │ │ │ │ ├── OTA_HotelSearchRQ.xml │ │ │ │ │ ├── OTA_HotelSearchRQ.xsd │ │ │ │ │ ├── OTA_HotelSearchRS.xml │ │ │ │ │ ├── OTA_HotelSearchRS.xsd │ │ │ │ │ ├── OTA_HotelStatsNotifRQ.xml │ │ │ │ │ ├── OTA_HotelStatsNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelStatsNotifRS.xml │ │ │ │ │ ├── OTA_HotelStatsNotifRS.xsd │ │ │ │ │ ├── OTA_HotelStatsRQ.xml │ │ │ │ │ ├── OTA_HotelStatsRQ.xsd │ │ │ │ │ ├── OTA_HotelStatsRS.xml │ │ │ │ │ ├── OTA_HotelStatsRS.xsd │ │ │ │ │ ├── OTA_HotelStayInfoNotifRQ.xml │ │ │ │ │ ├── OTA_HotelStayInfoNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelStayInfoNotifRS.xml │ │ │ │ │ ├── OTA_HotelStayInfoNotifRS.xsd │ │ │ │ │ ├── OTA_HotelSummaryNotifRQ.xml │ │ │ │ │ ├── OTA_HotelSummaryNotifRQ.xsd │ │ │ │ │ ├── OTA_HotelSummaryNotifRS.xml │ │ │ │ │ ├── OTA_HotelSummaryNotifRS.xsd │ │ │ │ │ ├── OTA_InsuranceBookRQ.xml │ │ │ │ │ ├── OTA_InsuranceBookRQ.xsd │ │ │ │ │ ├── OTA_InsuranceBookRS.xml │ │ │ │ │ ├── OTA_InsuranceBookRS.xsd │ │ │ │ │ ├── OTA_InsuranceCommonTypes.xsd │ │ │ │ │ ├── OTA_InsurancePlanSearchRQ.xml │ │ │ │ │ ├── OTA_InsurancePlanSearchRQ.xsd │ │ │ │ │ ├── OTA_InsurancePlanSearchRQ2.xml │ │ │ │ │ ├── OTA_InsurancePlanSearchRS.xml │ │ │ │ │ ├── OTA_InsurancePlanSearchRS.xsd │ │ │ │ │ ├── OTA_InsurancePlanSearchRS2.xml │ │ │ │ │ ├── OTA_InsuranceQuoteRQ.xml │ │ │ │ │ ├── OTA_InsuranceQuoteRQ.xsd │ │ │ │ │ ├── OTA_InsuranceQuoteRS.xml │ │ │ │ │ ├── OTA_InsuranceQuoteRS.xsd │ │ │ │ │ ├── OTA_LoyaltyAccountCreateRQ.xml │ │ │ │ │ ├── OTA_LoyaltyAccountCreateRQ.xsd │ │ │ │ │ ├── OTA_LoyaltyAccountRS.xml │ │ │ │ │ ├── OTA_LoyaltyAccountRS.xsd │ │ │ │ │ ├── OTA_LoyaltyAccountRS2.xml │ │ │ │ │ ├── OTA_LoyaltyCertificateCreateNotifRQ.xsd │ │ │ │ │ ├── OTA_LoyaltyCertificateCreateNotifRS.xsd │ │ │ │ │ ├── OTA_LoyaltyCertificateCreateRQ.xml │ │ │ │ │ ├── OTA_LoyaltyCertificateCreateRQ.xsd │ │ │ │ │ ├── OTA_LoyaltyCertificateCreateRS.xml │ │ │ │ │ ├── OTA_LoyaltyCertificateCreateRS.xsd │ │ │ │ │ ├── OTA_LoyaltyCertificateRedemptionRQ.xml │ │ │ │ │ ├── OTA_LoyaltyCertificateRedemptionRQ.xsd │ │ │ │ │ ├── OTA_LoyaltyCertificateRedemptionRS.xml │ │ │ │ │ ├── OTA_LoyaltyCertificateRedemptionRS.xsd │ │ │ │ │ ├── OTA_LoyaltyCommonTypes.xsd │ │ │ │ │ ├── OTA_MeetingProfile.xsd │ │ │ │ │ ├── OTA_NotifReportRQ.xml │ │ │ │ │ ├── OTA_NotifReportRQ.xsd │ │ │ │ │ ├── OTA_NotifReportRS.xml │ │ │ │ │ ├── OTA_NotifReportRS.xsd │ │ │ │ │ ├── OTA_PingRQ.xml │ │ │ │ │ ├── OTA_PingRQ.xsd │ │ │ │ │ ├── OTA_PingRS.xml │ │ │ │ │ ├── OTA_PingRS.xsd │ │ │ │ │ ├── OTA_PkgAvailRQ.xml │ │ │ │ │ ├── OTA_PkgAvailRQ.xsd │ │ │ │ │ ├── OTA_PkgAvailRS.xml │ │ │ │ │ ├── OTA_PkgAvailRS.xsd │ │ │ │ │ ├── OTA_PkgBookRQ.xml │ │ │ │ │ ├── OTA_PkgBookRQ.xsd │ │ │ │ │ ├── OTA_PkgBookRS.xml │ │ │ │ │ ├── OTA_PkgBookRS.xsd │ │ │ │ │ ├── OTA_PkgCommonTypes.xsd │ │ │ │ │ ├── OTA_PkgCostRQ.xml │ │ │ │ │ ├── OTA_PkgCostRQ.xsd │ │ │ │ │ ├── OTA_PkgCostRS.xml │ │ │ │ │ ├── OTA_PkgCostRS.xsd │ │ │ │ │ ├── OTA_PkgExtrasInfoRQ.xml │ │ │ │ │ ├── OTA_PkgExtrasInfoRQ.xsd │ │ │ │ │ ├── OTA_PkgExtrasInfoRS.xml │ │ │ │ │ ├── OTA_PkgExtrasInfoRS.xsd │ │ │ │ │ ├── OTA_PkgReservation.xsd │ │ │ │ │ ├── OTA_Profile.xsd │ │ │ │ │ ├── OTA_ProfileCreateRQ.xml │ │ │ │ │ ├── OTA_ProfileCreateRQ.xsd │ │ │ │ │ ├── OTA_ProfileCreateRS.xml │ │ │ │ │ ├── OTA_ProfileCreateRS.xsd │ │ │ │ │ ├── OTA_ProfileReadRS.xsd │ │ │ │ │ ├── OTA_PurchaseItemRQ.xml │ │ │ │ │ ├── OTA_PurchaseItemRQ.xsd │ │ │ │ │ ├── OTA_PurchaseItemRS.xml │ │ │ │ │ ├── OTA_PurchaseItemRS.xsd │ │ │ │ │ ├── OTA_RailAvailRQ.xml │ │ │ │ │ ├── OTA_RailAvailRQ.xsd │ │ │ │ │ ├── OTA_RailAvailRS.xml │ │ │ │ │ ├── OTA_RailAvailRS.xsd │ │ │ │ │ ├── OTA_RailBookRQ.xml │ │ │ │ │ ├── OTA_RailBookRQ.xsd │ │ │ │ │ ├── OTA_RailBookRS.xml │ │ │ │ │ ├── OTA_RailBookRS.xsd │ │ │ │ │ ├── OTA_RailCommonTypes.xsd │ │ │ │ │ ├── OTA_RailRetrieveRS.xml │ │ │ │ │ ├── OTA_RailRetrieveRS.xsd │ │ │ │ │ ├── OTA_ReadRQ.xml │ │ │ │ │ ├── OTA_ReadRQ.xsd │ │ │ │ │ ├── OTA_ReadRQ10.xml │ │ │ │ │ ├── OTA_ReadRQ11.xml │ │ │ │ │ ├── OTA_ReadRQ12.xml │ │ │ │ │ ├── OTA_ReadRQ2.xml │ │ │ │ │ ├── OTA_ReadRQ3.xml │ │ │ │ │ ├── OTA_ReadRQ4.xml │ │ │ │ │ ├── OTA_ReadRQ5.xml │ │ │ │ │ ├── OTA_ReadRQ6.xml │ │ │ │ │ ├── OTA_ReadRQ7.xml │ │ │ │ │ ├── OTA_ReadRQ8.xml │ │ │ │ │ ├── OTA_ReadRQ9.xml │ │ │ │ │ ├── OTA_ResRetrieveRS.xml │ │ │ │ │ ├── OTA_ResRetrieveRS.xsd │ │ │ │ │ ├── OTA_ResRetrieveRS2.xml │ │ │ │ │ ├── OTA_ResRetrieveRS3.xml │ │ │ │ │ ├── OTA_ResRetrieveRS4.xml │ │ │ │ │ ├── OTA_ResRetrieveRS5.xml │ │ │ │ │ ├── OTA_ScreenTextRQ.xml │ │ │ │ │ ├── OTA_ScreenTextRQ.xsd │ │ │ │ │ ├── OTA_ScreenTextRS.xml │ │ │ │ │ ├── OTA_ScreenTextRS.xsd │ │ │ │ │ ├── OTA_SimpleTypes.xsd │ │ │ │ │ ├── OTA_TourAvailRQ.xml │ │ │ │ │ ├── OTA_TourAvailRQ.xsd │ │ │ │ │ ├── OTA_TourAvailRS.xml │ │ │ │ │ ├── OTA_TourAvailRS.xsd │ │ │ │ │ ├── OTA_TourInformation.xsd │ │ │ │ │ ├── OTA_TourInformationNotifRQ.xml │ │ │ │ │ ├── OTA_TourInformationNotifRQ.xsd │ │ │ │ │ ├── OTA_TourInformationNotifRQ2.xml │ │ │ │ │ ├── OTA_TourInformationNotifRQ3.xml │ │ │ │ │ ├── OTA_TourInformationNotifRS.xml │ │ │ │ │ ├── OTA_TourInformationNotifRS.xsd │ │ │ │ │ ├── OTA_TourInformationNotifRS2.xml │ │ │ │ │ ├── OTA_TourInformationNotifRS3.xml │ │ │ │ │ ├── OTA_TourSearchRQ.xml │ │ │ │ │ ├── OTA_TourSearchRQ.xsd │ │ │ │ │ ├── OTA_TourSearchRQ2.xml │ │ │ │ │ ├── OTA_TourSearchRS.xml │ │ │ │ │ ├── OTA_TourSearchRS.xsd │ │ │ │ │ ├── OTA_TourSearchRS2.xml │ │ │ │ │ ├── OTA_TravelItineraryRS.xml │ │ │ │ │ ├── OTA_TravelItineraryRS.xsd │ │ │ │ │ ├── OTA_TravelItineraryReadRQ.xml │ │ │ │ │ ├── OTA_TravelItineraryReadRQ.xsd │ │ │ │ │ ├── OTA_UpdateRQ.xml │ │ │ │ │ ├── OTA_UpdateRQ.xsd │ │ │ │ │ ├── OTA_UpdateRS.xml │ │ │ │ │ ├── OTA_UpdateRS.xsd │ │ │ │ │ ├── OTA_VehAvailRateRQ.xml │ │ │ │ │ ├── OTA_VehAvailRateRQ.xsd │ │ │ │ │ ├── OTA_VehAvailRateRS.xml │ │ │ │ │ ├── OTA_VehAvailRateRS.xsd │ │ │ │ │ ├── OTA_VehCancelRQ.xml │ │ │ │ │ ├── OTA_VehCancelRQ.xsd │ │ │ │ │ ├── OTA_VehCancelRS.xml │ │ │ │ │ ├── OTA_VehCancelRS.xsd │ │ │ │ │ ├── OTA_VehCheckInRQ.xml │ │ │ │ │ ├── OTA_VehCheckInRQ.xsd │ │ │ │ │ ├── OTA_VehCheckInRQ2.xml │ │ │ │ │ ├── OTA_VehCheckInRQ3.xml │ │ │ │ │ ├── OTA_VehCheckInRS.xml │ │ │ │ │ ├── OTA_VehCheckInRS.xsd │ │ │ │ │ ├── OTA_VehCheckInRS2.xml │ │ │ │ │ ├── OTA_VehCheckInRS3.xml │ │ │ │ │ ├── OTA_VehCheckOutRQ.xml │ │ │ │ │ ├── OTA_VehCheckOutRQ.xsd │ │ │ │ │ ├── OTA_VehCheckOutRQ2.xml │ │ │ │ │ ├── OTA_VehCheckOutRQ3.xml │ │ │ │ │ ├── OTA_VehCheckOutRS.xml │ │ │ │ │ ├── OTA_VehCheckOutRS.xsd │ │ │ │ │ ├── OTA_VehCheckOutRS2.xml │ │ │ │ │ ├── OTA_VehCheckOutRS3.xml │ │ │ │ │ ├── OTA_VehExchangeRQ.xml │ │ │ │ │ ├── OTA_VehExchangeRQ.xsd │ │ │ │ │ ├── OTA_VehExchangeRS.xml │ │ │ │ │ ├── OTA_VehExchangeRS.xsd │ │ │ │ │ ├── OTA_VehLocDetailRQ.xml │ │ │ │ │ ├── OTA_VehLocDetailRQ.xsd │ │ │ │ │ ├── OTA_VehLocDetailRS.xml │ │ │ │ │ ├── OTA_VehLocDetailRS.xsd │ │ │ │ │ ├── OTA_VehLocDetailsNotifRQ.xml │ │ │ │ │ ├── OTA_VehLocDetailsNotifRQ.xsd │ │ │ │ │ ├── OTA_VehLocDetailsNotifRS.xml │ │ │ │ │ ├── OTA_VehLocDetailsNotifRS.xsd │ │ │ │ │ ├── OTA_VehLocSearchRQ.xml │ │ │ │ │ ├── OTA_VehLocSearchRQ.xsd │ │ │ │ │ ├── OTA_VehLocSearchRS.xml │ │ │ │ │ ├── OTA_VehLocSearchRS.xsd │ │ │ │ │ ├── OTA_VehModifyRQ.xml │ │ │ │ │ ├── OTA_VehModifyRQ.xsd │ │ │ │ │ ├── OTA_VehModifyRQ2.xml │ │ │ │ │ ├── OTA_VehModifyRS.xml │ │ │ │ │ ├── OTA_VehModifyRS.xsd │ │ │ │ │ ├── OTA_VehModifyRS2.xml │ │ │ │ │ ├── OTA_VehRateNotifRQ.xml │ │ │ │ │ ├── OTA_VehRateNotifRQ.xsd │ │ │ │ │ ├── OTA_VehRateNotifRS.xml │ │ │ │ │ ├── OTA_VehRateNotifRS.xsd │ │ │ │ │ ├── OTA_VehRateNotifRS2.xml │ │ │ │ │ ├── OTA_VehRateNotifRS3.xml │ │ │ │ │ ├── OTA_VehRateRuleNotifRQ.xml │ │ │ │ │ ├── OTA_VehRateRuleNotifRQ.xsd │ │ │ │ │ ├── OTA_VehRateRuleNotifRS.xml │ │ │ │ │ ├── OTA_VehRateRuleNotifRS.xsd │ │ │ │ │ ├── OTA_VehRateRuleRQ.xml │ │ │ │ │ ├── OTA_VehRateRuleRQ.xsd │ │ │ │ │ ├── OTA_VehRateRuleRS.xml │ │ │ │ │ ├── OTA_VehRateRuleRS.xsd │ │ │ │ │ ├── OTA_VehResRQ.xml │ │ │ │ │ ├── OTA_VehResRQ.xsd │ │ │ │ │ ├── OTA_VehResRS.xml │ │ │ │ │ ├── OTA_VehResRS.xsd │ │ │ │ │ ├── OTA_VehRetResRQ.xml │ │ │ │ │ ├── OTA_VehRetResRQ.xsd │ │ │ │ │ ├── OTA_VehRetResRS.xml │ │ │ │ │ ├── OTA_VehRetResRS.xsd │ │ │ │ │ └── OTA_VehicleCommonTypes.xsd │ │ │ │ │ └── binding.xjb │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── OTA_AirAvailRQ.xml │ │ │ │ ├── OTA_AirAvailRS.xml │ │ │ │ └── OTA_AirBookModifyRQ.xml │ │ ├── ows │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ ├── ows │ │ │ │ │ └── 1.1.0 │ │ │ │ │ │ ├── ows19115subset.xsd │ │ │ │ │ │ ├── owsAll.xsd │ │ │ │ │ │ ├── owsCommon.xsd │ │ │ │ │ │ ├── owsContents.xsd │ │ │ │ │ │ ├── owsDataIdentification.xsd │ │ │ │ │ │ ├── owsDomainType.xsd │ │ │ │ │ │ ├── owsExceptionReport.xsd │ │ │ │ │ │ ├── owsGetCapabilities.xsd │ │ │ │ │ │ ├── owsGetResourceByID.xsd │ │ │ │ │ │ ├── owsInputOutputData.xsd │ │ │ │ │ │ ├── owsManifest.xsd │ │ │ │ │ │ ├── owsOperationsMetadata.xsd │ │ │ │ │ │ ├── owsServiceIdentification.xsd │ │ │ │ │ │ └── owsServiceProvider.xsd │ │ │ │ │ └── xlink │ │ │ │ │ └── 1.0.0 │ │ │ │ │ ├── ReadMe.txt │ │ │ │ │ └── xlinks.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── exampleConstraint1.xml │ │ │ │ ├── exampleExceptionReport1.xml │ │ │ │ ├── exampleExceptionReport2.xml │ │ │ │ ├── exampleGeneralBox2.xml │ │ │ │ ├── exampleGetCapabilities2.xml │ │ │ │ ├── exampleOperationsMetadata.xml │ │ │ │ └── exampleWGS84Box2.xml │ │ ├── pesc │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── CoreMain_v1.2.0.xsd │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── hyperjaxb3.names.properties │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── .placeholder │ │ ├── plmxml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── PLMXMLAnnotationSchema.xsd │ │ │ │ │ ├── PLMXMLBusinessSchema.xsd │ │ │ │ │ ├── PLMXMLClassificationSchema.xsd │ │ │ │ │ ├── PLMXMLConstraintSchema.xsd │ │ │ │ │ ├── PLMXMLDeltaSchema.xsd │ │ │ │ │ ├── PLMXMLFDSchema.xsd │ │ │ │ │ ├── PLMXMLMPMSchema.xsd │ │ │ │ │ ├── PLMXMLMROSchema.xsd │ │ │ │ │ ├── PLMXMLMechatronicsSchema.xsd │ │ │ │ │ ├── PLMXMLMotionSchema.xsd │ │ │ │ │ ├── PLMXMLPDMSchema.xsd │ │ │ │ │ ├── PLMXMLRouteListSchema.xsd │ │ │ │ │ ├── PLMXMLSchema.xsd │ │ │ │ │ ├── PLMXMLUGSSchema.xsd │ │ │ │ │ └── bindings.xjb │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── .placeholder │ │ ├── po-customized │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ └── RunPoCustomizedPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po-el-customized │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po-jaxb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ └── RoundtripTest.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po-jpa-2.1 │ │ │ ├── .project │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po_jpa_v_2_1 │ │ │ │ │ ├── ReflectionTest.java │ │ │ │ │ └── RunPoPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po-maxidlength │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── a.xsd │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ └── ItemMaxIdentifierLengthTest.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── a.xml │ │ │ │ └── po.xml │ │ ├── po-mysql │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ └── RunPoPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po-tl-customized │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ └── RunPoCustomizedPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── po │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── a.xsd │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ ├── ReflectionTest.java │ │ │ │ │ └── RunPoPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── a.xml │ │ │ │ └── po.xml │ │ ├── polyform │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── polyform │ │ │ │ │ └── RunPolyformPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── Alpha[0].xml │ │ │ │ ├── Beta[0].xml │ │ │ │ ├── Delta[0].xml │ │ │ │ └── Gamma[0].xml │ │ ├── pom.xml │ │ ├── punit │ │ │ ├── core │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── etc │ │ │ │ │ │ └── persistence.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ │ └── ejb │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── po │ │ │ │ │ │ │ └── EntityListener.java │ │ │ │ │ └── resources │ │ │ │ │ │ ├── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ │ └── ejb │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── po │ │ │ │ │ │ │ └── orm.xml │ │ │ │ │ │ └── schema.xsd │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── po │ │ │ │ │ │ └── RunPoPlugin.java │ │ │ │ │ ├── resources │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── persistence.properties │ │ │ │ │ └── samples │ │ │ │ │ └── po.xml │ │ │ ├── ext │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ │ └── ejb │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── po │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ └── EntityListener.java │ │ │ │ │ └── resources │ │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── po │ │ │ │ │ │ └── orm.xml │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── po │ │ │ │ │ │ └── RoundtripTest.java │ │ │ │ │ ├── resources │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── persistence.properties │ │ │ │ │ └── samples │ │ │ │ │ └── po.xml │ │ │ └── pom.xml │ │ ├── px │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── etc │ │ │ │ │ └── persistence.xml │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── po │ │ │ │ │ │ └── EntityListener.java │ │ │ │ └── resources │ │ │ │ │ ├── org │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ │ └── ejb │ │ │ │ │ │ └── tests │ │ │ │ │ │ └── po │ │ │ │ │ │ └── orm.xml │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── po │ │ │ │ │ └── RunPoPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── regrep │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ ├── cms.xsd │ │ │ │ │ ├── lcm.xsd │ │ │ │ │ ├── mtom-transport.xsd │ │ │ │ │ ├── query.xsd │ │ │ │ │ ├── rim.xsd │ │ │ │ │ ├── rs.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── regrep │ │ │ │ │ └── RunRegrepPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── AdhocQueryRequest.xml │ │ │ │ ├── SubmitObjectsRequest_AssociationTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_CMSScheme.xml │ │ │ │ ├── SubmitObjectsRequest_CMSScheme_empty.xml │ │ │ │ ├── SubmitObjectsRequest_Config.starxml │ │ │ │ ├── SubmitObjectsRequest_DataTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_DeletionScopeTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_EmailTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_ErrorHandlingModelScheme.xml │ │ │ │ ├── SubmitObjectsRequest_ErrorSeverityTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_EventTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_InvocationModelScheme.xml │ │ │ │ ├── SubmitObjectsRequest_NodeTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_NotificationOptionTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_ObjectTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_PhoneTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_QueryLangScheme.xml │ │ │ │ ├── SubmitObjectsRequest_ResponseStatusTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_StabilityTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_StatusTypeScheme.xml │ │ │ │ ├── SubmitObjectsRequest_SubjectGroupScheme.xml │ │ │ │ ├── SubmitObjectsRequest_SubjectRoleScheme.xml │ │ │ │ └── SubmitObjectsRequest_XSLT.xml │ │ ├── rim │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ └── xsd │ │ │ │ │ ├── XMLSchema.dtd │ │ │ │ │ ├── datatypes.dtd │ │ │ │ │ ├── lcm.xsd │ │ │ │ │ ├── query.xsd │ │ │ │ │ ├── rim.xsd │ │ │ │ │ ├── rs.xsd │ │ │ │ │ ├── spi.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── SubmitObjectsRequest_Config.xml │ │ │ │ └── SubmitObjectsRequest_Config_1.txml │ │ ├── sbml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── binding.xjb │ │ │ │ │ ├── mathml2.xsd │ │ │ │ │ └── sbml.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── sepa │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── .placeholder │ │ │ │ └── 1.xml │ │ ├── service │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── hyperjaxb3.names.properties │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── simple │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── sml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── NITF │ │ │ │ │ └── 3.4 │ │ │ │ │ │ └── specification │ │ │ │ │ │ └── schema │ │ │ │ │ │ ├── nitf-3-4-ruby-include.xsd │ │ │ │ │ │ └── nitf-3-4.xsd │ │ │ │ │ └── sportsml │ │ │ │ │ └── 1.8 │ │ │ │ │ └── specification │ │ │ │ │ └── schema │ │ │ │ │ ├── resource-files │ │ │ │ │ ├── sportsml-vocabulary-core.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-american-football.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-baseball.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-basketball.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-curling.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-golf.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-ice-hockey.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-motor-racing.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-soccer.xsd │ │ │ │ │ ├── sportsml-vocabulary-specific-tennis.xsd │ │ │ │ │ ├── team-keys-l.mlb.com.xsd │ │ │ │ │ ├── team-keys-l.nhl.com.xsd │ │ │ │ │ └── team-keys-l.swede-ice.se.xsd │ │ │ │ │ ├── sportsml-core.xsd │ │ │ │ │ ├── sportsml-loose.xsd │ │ │ │ │ ├── sportsml-specific-american-football.xsd │ │ │ │ │ ├── sportsml-specific-baseball.xsd │ │ │ │ │ ├── sportsml-specific-basketball.xsd │ │ │ │ │ ├── sportsml-specific-curling.xsd │ │ │ │ │ ├── sportsml-specific-golf.xsd │ │ │ │ │ ├── sportsml-specific-ice-hockey.xsd │ │ │ │ │ ├── sportsml-specific-motor-racing.xsd │ │ │ │ │ ├── sportsml-specific-soccer.xsd │ │ │ │ │ ├── sportsml-specific-tennis.xsd │ │ │ │ │ └── sportsml.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── sportsml-basketball_standings.xml │ │ │ │ ├── sportsml-basketball_swedish.xml │ │ │ │ ├── sportsml-curling.xml │ │ │ │ ├── sportsml-floorball_swedish.xml │ │ │ │ ├── sportsml-golf.xml │ │ │ │ ├── sportsml-ice_hockey_news.xml │ │ │ │ ├── sportsml-ice_hockey_swedish.xml │ │ │ │ ├── sportsml-olympics_swimming.xml │ │ │ │ ├── sportsml-olympics_weightlifting.xml │ │ │ │ ├── sportsml-sample-invalid.xml │ │ │ │ ├── sportsml-sample-valid.xml │ │ │ │ ├── sportsml-soccer_swedish.xml │ │ │ │ ├── sportsml-tennis.xml │ │ │ │ └── sportsml-tennis_tournament.xml │ │ ├── st │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── st │ │ │ │ │ ├── HJIII11IssueTest.java │ │ │ │ │ └── RunStPlugin.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── star │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── STAR │ │ │ │ │ ├── License │ │ │ │ │ └── License │ │ │ │ │ │ ├── OAGiLicenseAgreement.txt │ │ │ │ │ │ └── eclipse-1.0.txt │ │ │ │ │ └── Rev5.1.4 │ │ │ │ │ ├── BODExamples │ │ │ │ │ ├── AcknowledgeCreditApplication.xml │ │ │ │ │ ├── AcknowledgeCreditContractResponse.xml │ │ │ │ │ ├── AcknowledgeCreditDecision.xml │ │ │ │ │ ├── AcknowledgeFinancialStatement.xml │ │ │ │ │ ├── AcknowledgeLaborOperations.xml │ │ │ │ │ ├── AcknowledgePartsActivity.xml │ │ │ │ │ ├── AcknowledgePartsInventory.xml │ │ │ │ │ ├── AcknowledgePartsInvoice.xml │ │ │ │ │ ├── AcknowledgePartsMaster.xml │ │ │ │ │ ├── AcknowledgePartsOrder.xml │ │ │ │ │ ├── AcknowledgePartsPicklist.xml │ │ │ │ │ ├── AcknowledgePartsReturn.xml │ │ │ │ │ ├── AcknowledgePartsShipment.xml │ │ │ │ │ ├── AcknowledgePersonnel.xml │ │ │ │ │ ├── AcknowledgeRepairOrder.xml │ │ │ │ │ ├── AcknowledgeRetailDeliveryReporting.xml │ │ │ │ │ ├── AcknowledgeSalesLead.xml │ │ │ │ │ ├── AcknowledgeServiceAppointment.xml │ │ │ │ │ ├── AcknowledgeServicePlan.xml │ │ │ │ │ ├── AcknowledgeServiceProcessingAdvisory.xml │ │ │ │ │ ├── AcknowledgeStandardCodes.xml │ │ │ │ │ ├── AcknowledgeSubscriptionService.xml │ │ │ │ │ ├── AcknowledgeValidateInitiative.xml │ │ │ │ │ ├── AcknowledgeVehicleInventory.xml │ │ │ │ │ ├── AcknowledgeVehicleInvoice.xml │ │ │ │ │ ├── AcknowledgeVehicleOrder.xml │ │ │ │ │ ├── AcknowledgeVehiclePayments.xml │ │ │ │ │ ├── AcknowledgeVehicleRemarketing.xml │ │ │ │ │ ├── CancelPartsOrder.xml │ │ │ │ │ ├── CancelRetailDeliveryReporting.xml │ │ │ │ │ ├── CancelSalesLead.xml │ │ │ │ │ ├── CancelSubscriptionService.xml │ │ │ │ │ ├── CancelVehicleOrder.xml │ │ │ │ │ ├── CancelVehicleRemarketing.xml │ │ │ │ │ ├── ChangeFinancialStatement.xml │ │ │ │ │ ├── ChangePartsOrder.xml │ │ │ │ │ ├── ChangePersonnel.xml │ │ │ │ │ ├── ChangeRepairOrder.xml │ │ │ │ │ ├── ChangeRetailDeliveryReporting.xml │ │ │ │ │ ├── ChangeSalesLead.xml │ │ │ │ │ ├── ChangeServiceAppointment.xml │ │ │ │ │ ├── ChangeStandardCodes.xml │ │ │ │ │ ├── ChangeSubscriptionService.xml │ │ │ │ │ ├── ChangeVehicleInventory.xml │ │ │ │ │ ├── ChangeVehicleInvoice.xml │ │ │ │ │ ├── ChangeVehicleOrder.xml │ │ │ │ │ ├── ChangeVehicleRemarketing.xml │ │ │ │ │ ├── ConfirmBOD.xml │ │ │ │ │ ├── ConfirmServiceAdvisoryReceiptAcknowledgment.xml │ │ │ │ │ ├── ConfirmServiceAppointmentAcknowledgment.xml │ │ │ │ │ ├── GetDealerLocator.xml │ │ │ │ │ ├── GetInitiativeDownloadRetrieval.xml │ │ │ │ │ ├── GetLaborOperations.xml │ │ │ │ │ ├── GetModelCodes.xml │ │ │ │ │ ├── GetPartsInvoice.xml │ │ │ │ │ ├── GetPartsLocator.xml │ │ │ │ │ ├── GetPartsMaster.xml │ │ │ │ │ ├── GetPartsOrder.xml │ │ │ │ │ ├── GetPartsPickList.xml │ │ │ │ │ ├── GetPartsReturn.xml │ │ │ │ │ ├── GetPartsShipment.xml │ │ │ │ │ ├── GetRepairOrder.xml │ │ │ │ │ ├── GetServiceProcessingAdvisory.xml │ │ │ │ │ ├── GetStandardCodes.xml │ │ │ │ │ ├── GetVehicleInventory.xml │ │ │ │ │ ├── GetVehicleInvoice.xml │ │ │ │ │ ├── GetVehicleOrder.xml │ │ │ │ │ ├── GetVehicleRemarketing.xml │ │ │ │ │ ├── GetVehicleServiceHistory.xml │ │ │ │ │ ├── GetVehicleSpecifications.xml │ │ │ │ │ ├── ProcessCreditApplication.xml │ │ │ │ │ ├── ProcessCreditContract.xml │ │ │ │ │ ├── ProcessCreditDecision.xml │ │ │ │ │ ├── ProcessFinancialStatement.xml │ │ │ │ │ ├── ProcessLaborOperations.xml │ │ │ │ │ ├── ProcessPartsActivity.xml │ │ │ │ │ ├── ProcessPartsInventory.xml │ │ │ │ │ ├── ProcessPartsInvoice.xml │ │ │ │ │ ├── ProcessPartsMaster.xml │ │ │ │ │ ├── ProcessPartsOrder.xml │ │ │ │ │ ├── ProcessPartsPicklist.xml │ │ │ │ │ ├── ProcessPartsReturn.xml │ │ │ │ │ ├── ProcessPartsShipment.xml │ │ │ │ │ ├── ProcessPersonnel.xml │ │ │ │ │ ├── ProcessRepairOrder.xml │ │ │ │ │ ├── ProcessRetailDeliveryReporting.xml │ │ │ │ │ ├── ProcessSalesLead.xml │ │ │ │ │ ├── ProcessServiceAppointment.xml │ │ │ │ │ ├── ProcessServicePlan.xml │ │ │ │ │ ├── ProcessServiceProcessingAdvisory.xml │ │ │ │ │ ├── ProcessStandardCodes.xml │ │ │ │ │ ├── ProcessSubscriptionService.xml │ │ │ │ │ ├── ProcessValidateInitiative.xml │ │ │ │ │ ├── ProcessVehicleInventory.xml │ │ │ │ │ ├── ProcessVehicleInvoice.xml │ │ │ │ │ ├── ProcessVehicleOrder.xml │ │ │ │ │ ├── ProcessVehiclePayments.xml │ │ │ │ │ ├── ProcessVehicleRemarketing.xml │ │ │ │ │ ├── RespondFinancialStatement.xml │ │ │ │ │ ├── RespondLaborOperations.xml │ │ │ │ │ ├── RespondPartsOrder.xml │ │ │ │ │ ├── RespondPersonnel.xml │ │ │ │ │ ├── RespondRepairOrder.xml │ │ │ │ │ ├── RespondRetailDeliveryReporting.xml │ │ │ │ │ ├── RespondSalesLead.xml │ │ │ │ │ ├── RespondServiceAppointment.xml │ │ │ │ │ ├── RespondStandardCodes.xml │ │ │ │ │ ├── RespondSubscriptionService.xml │ │ │ │ │ ├── RespondVehicleInventory.xml │ │ │ │ │ ├── RespondVehicleInvoice.xml │ │ │ │ │ ├── RespondVehicleOrder.xml │ │ │ │ │ ├── RespondVehicleRemarketing.xml │ │ │ │ │ ├── ShowInitiativeDownload.xml │ │ │ │ │ ├── ShowLaborOperations.xml │ │ │ │ │ ├── ShowModelCodes.xml │ │ │ │ │ ├── ShowPartsInvoice.xml │ │ │ │ │ ├── ShowPartsLocator.xml │ │ │ │ │ ├── ShowPartsMaster.xml │ │ │ │ │ ├── ShowPartsOrder.xml │ │ │ │ │ ├── ShowPartsPickList.xml │ │ │ │ │ ├── ShowPartsReturn.xml │ │ │ │ │ ├── ShowPartsShipment.xml │ │ │ │ │ ├── ShowRepairOrder.xml │ │ │ │ │ ├── ShowServiceProcessingAdvisory.xml │ │ │ │ │ ├── ShowStandardCodes.xml │ │ │ │ │ ├── ShowVehicleInventory.xml │ │ │ │ │ ├── ShowVehicleInvoice.xml │ │ │ │ │ ├── ShowVehicleOrder.xml │ │ │ │ │ ├── ShowVehicleRemarketing.xml │ │ │ │ │ ├── ShowVehicleServiceHistory.xml │ │ │ │ │ ├── ShowVehicleSpecifications.xml │ │ │ │ │ ├── SyncInitiativeDownload.xml │ │ │ │ │ ├── UpdateLaborOperations.xml │ │ │ │ │ └── UpdateSalesLead.xml │ │ │ │ │ ├── BODs │ │ │ │ │ ├── Developer │ │ │ │ │ │ ├── AcknowledgeCreditApplication.xsd │ │ │ │ │ │ ├── AcknowledgeCreditContractResponse.xsd │ │ │ │ │ │ ├── AcknowledgeCreditDecision.xsd │ │ │ │ │ │ ├── AcknowledgeFinancialStatement.xsd │ │ │ │ │ │ ├── AcknowledgeLaborOperations.xsd │ │ │ │ │ │ ├── AcknowledgePartsActivity.xsd │ │ │ │ │ │ ├── AcknowledgePartsInventory.xsd │ │ │ │ │ │ ├── AcknowledgePartsInvoice.xsd │ │ │ │ │ │ ├── AcknowledgePartsMaster.xsd │ │ │ │ │ │ ├── AcknowledgePartsOrder.xsd │ │ │ │ │ │ ├── AcknowledgePartsPickList.xsd │ │ │ │ │ │ ├── AcknowledgePartsPriceList.xsd │ │ │ │ │ │ ├── AcknowledgePartsReturn.xsd │ │ │ │ │ │ ├── AcknowledgePartsShipment.xsd │ │ │ │ │ │ ├── AcknowledgePersonnel.xsd │ │ │ │ │ │ ├── AcknowledgeRepairOrder.xsd │ │ │ │ │ │ ├── AcknowledgeRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── AcknowledgeSalesLead.xsd │ │ │ │ │ │ ├── AcknowledgeServiceAppointment.xsd │ │ │ │ │ │ ├── AcknowledgeServicePlan.xsd │ │ │ │ │ │ ├── AcknowledgeServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── AcknowledgeStandardCodes.xsd │ │ │ │ │ │ ├── AcknowledgeSubscriptionService.xsd │ │ │ │ │ │ ├── AcknowledgeValidateInitiative.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleInventory.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleInvoice.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleOrder.xsd │ │ │ │ │ │ ├── AcknowledgeVehiclePayments.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleRemarketing.xsd │ │ │ │ │ │ ├── CancelPartsOrder.xsd │ │ │ │ │ │ ├── CancelRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── CancelSalesLead.xsd │ │ │ │ │ │ ├── CancelSubscriptionService.xsd │ │ │ │ │ │ ├── CancelVehicleOrder.xsd │ │ │ │ │ │ ├── CancelVehicleRemarketing.xsd │ │ │ │ │ │ ├── ChangeFinancialStatement.xsd │ │ │ │ │ │ ├── ChangePartsOrder.xsd │ │ │ │ │ │ ├── ChangePersonnel.xsd │ │ │ │ │ │ ├── ChangeRepairOrder.xsd │ │ │ │ │ │ ├── ChangeRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── ChangeSalesLead.xsd │ │ │ │ │ │ ├── ChangeServiceAppointment.xsd │ │ │ │ │ │ ├── ChangeStandardCodes.xsd │ │ │ │ │ │ ├── ChangeSubscriptionService.xsd │ │ │ │ │ │ ├── ChangeVehicleInventory.xsd │ │ │ │ │ │ ├── ChangeVehicleInvoice.xsd │ │ │ │ │ │ ├── ChangeVehicleOrder.xsd │ │ │ │ │ │ ├── ChangeVehicleRemarketing.xsd │ │ │ │ │ │ ├── ConfirmBOD.xsd │ │ │ │ │ │ ├── ConfirmServiceAdvisoryReceiptAcknowledgment.xsd │ │ │ │ │ │ ├── ConfirmServiceAppointmentAcknowledgment.xsd │ │ │ │ │ │ ├── FordProcessSalesLead20080310.xml │ │ │ │ │ │ ├── GetDealerLocator.xsd │ │ │ │ │ │ ├── GetInitiativeDownloadRetrieval.xsd │ │ │ │ │ │ ├── GetLaborOperations.xsd │ │ │ │ │ │ ├── GetModelCodes.xsd │ │ │ │ │ │ ├── GetPartsInvoice.xsd │ │ │ │ │ │ ├── GetPartsLocator.xsd │ │ │ │ │ │ ├── GetPartsMaster.xsd │ │ │ │ │ │ ├── GetPartsOrder.xsd │ │ │ │ │ │ ├── GetPartsPickList.xsd │ │ │ │ │ │ ├── GetPartsPriceList.xsd │ │ │ │ │ │ ├── GetPartsReturn.xsd │ │ │ │ │ │ ├── GetPartsShipment.xsd │ │ │ │ │ │ ├── GetRepairOrder.xsd │ │ │ │ │ │ ├── GetServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── GetStandardCodes.xsd │ │ │ │ │ │ ├── GetVehicleInventory.xsd │ │ │ │ │ │ ├── GetVehicleInvoice.xsd │ │ │ │ │ │ ├── GetVehicleOrder.xsd │ │ │ │ │ │ ├── GetVehicleRemarketing.xsd │ │ │ │ │ │ ├── GetVehicleServiceHistory.xsd │ │ │ │ │ │ ├── GetVehicleSpecifications.xsd │ │ │ │ │ │ ├── NotifyPartsOrder.xsd │ │ │ │ │ │ ├── ProcessCreditApplication.xsd │ │ │ │ │ │ ├── ProcessCreditContract.xsd │ │ │ │ │ │ ├── ProcessCreditDecision.xsd │ │ │ │ │ │ ├── ProcessFinancialStatement.xsd │ │ │ │ │ │ ├── ProcessLaborOperations.xsd │ │ │ │ │ │ ├── ProcessPartsActivity.xsd │ │ │ │ │ │ ├── ProcessPartsInventory.xsd │ │ │ │ │ │ ├── ProcessPartsInvoice.xsd │ │ │ │ │ │ ├── ProcessPartsMaster.xsd │ │ │ │ │ │ ├── ProcessPartsOrder.xsd │ │ │ │ │ │ ├── ProcessPartsPickList.xsd │ │ │ │ │ │ ├── ProcessPartsPriceList.xsd │ │ │ │ │ │ ├── ProcessPartsReturn.xsd │ │ │ │ │ │ ├── ProcessPartsShipment.xsd │ │ │ │ │ │ ├── ProcessPersonnel.xsd │ │ │ │ │ │ ├── ProcessRepairOrder.xsd │ │ │ │ │ │ ├── ProcessRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── ProcessSalesLead.xsd │ │ │ │ │ │ ├── ProcessServiceAppointment.xsd │ │ │ │ │ │ ├── ProcessServicePlan.xsd │ │ │ │ │ │ ├── ProcessServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── ProcessStandardCodes.xsd │ │ │ │ │ │ ├── ProcessSubscriptionService.xsd │ │ │ │ │ │ ├── ProcessValidateInitiative.xsd │ │ │ │ │ │ ├── ProcessVehicleInventory.xsd │ │ │ │ │ │ ├── ProcessVehicleInvoice.xsd │ │ │ │ │ │ ├── ProcessVehicleOrder.xsd │ │ │ │ │ │ ├── ProcessVehiclePayments.xsd │ │ │ │ │ │ ├── ProcessVehicleRemarketing.xsd │ │ │ │ │ │ ├── ProposePartsOrder.xsd │ │ │ │ │ │ ├── RespondFinancialStatement.xsd │ │ │ │ │ │ ├── RespondLaborOperations.xsd │ │ │ │ │ │ ├── RespondPartsOrder.xsd │ │ │ │ │ │ ├── RespondPersonnel.xsd │ │ │ │ │ │ ├── RespondRepairOrder.xsd │ │ │ │ │ │ ├── RespondRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── RespondSalesLead.xsd │ │ │ │ │ │ ├── RespondServiceAppointment.xsd │ │ │ │ │ │ ├── RespondStandardCodes.xsd │ │ │ │ │ │ ├── RespondSubscriptionService.xsd │ │ │ │ │ │ ├── RespondVehicleInventory.xsd │ │ │ │ │ │ ├── RespondVehicleInvoice.xsd │ │ │ │ │ │ ├── RespondVehicleOrder.xsd │ │ │ │ │ │ ├── RespondVehicleRemarketing.xsd │ │ │ │ │ │ ├── ShowDealerLocator.xsd │ │ │ │ │ │ ├── ShowInitiativeDownload.xsd │ │ │ │ │ │ ├── ShowLaborOperations.xsd │ │ │ │ │ │ ├── ShowModelCodes.xsd │ │ │ │ │ │ ├── ShowPartsInvoice.xsd │ │ │ │ │ │ ├── ShowPartsLocator.xsd │ │ │ │ │ │ ├── ShowPartsMaster.xsd │ │ │ │ │ │ ├── ShowPartsOrder.xsd │ │ │ │ │ │ ├── ShowPartsPickList.xsd │ │ │ │ │ │ ├── ShowPartsPriceList.xsd │ │ │ │ │ │ ├── ShowPartsReturn.xsd │ │ │ │ │ │ ├── ShowPartsShipment.xsd │ │ │ │ │ │ ├── ShowRepairOrder.xsd │ │ │ │ │ │ ├── ShowServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── ShowStandardCodes.xsd │ │ │ │ │ │ ├── ShowVehicleInventory.xsd │ │ │ │ │ │ ├── ShowVehicleInvoice.xsd │ │ │ │ │ │ ├── ShowVehicleOrder.xsd │ │ │ │ │ │ ├── ShowVehicleRemarketing.xsd │ │ │ │ │ │ ├── ShowVehicleServiceHistory.xsd │ │ │ │ │ │ ├── ShowVehicleSpecifications.xsd │ │ │ │ │ │ ├── SyncInitiativeDownload.xsd │ │ │ │ │ │ ├── UpdateLaborOperations.xsd │ │ │ │ │ │ └── UpdateSalesLead.xsd │ │ │ │ │ └── Standalone │ │ │ │ │ │ ├── AcknowledgeCreditApplication.xsd │ │ │ │ │ │ ├── AcknowledgeCreditContractResponse.xsd │ │ │ │ │ │ ├── AcknowledgeCreditDecision.xsd │ │ │ │ │ │ ├── AcknowledgeFinancialStatement.xsd │ │ │ │ │ │ ├── AcknowledgeLaborOperations.xsd │ │ │ │ │ │ ├── AcknowledgePartsActivity.xsd │ │ │ │ │ │ ├── AcknowledgePartsInventory.xsd │ │ │ │ │ │ ├── AcknowledgePartsInvoice.xsd │ │ │ │ │ │ ├── AcknowledgePartsMaster.xsd │ │ │ │ │ │ ├── AcknowledgePartsOrder.xsd │ │ │ │ │ │ ├── AcknowledgePartsPickList.xsd │ │ │ │ │ │ ├── AcknowledgePartsPriceList.xsd │ │ │ │ │ │ ├── AcknowledgePartsReturn.xsd │ │ │ │ │ │ ├── AcknowledgePartsShipment.xsd │ │ │ │ │ │ ├── AcknowledgePersonnel.xsd │ │ │ │ │ │ ├── AcknowledgeRepairOrder.xsd │ │ │ │ │ │ ├── AcknowledgeRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── AcknowledgeSalesLead.xsd │ │ │ │ │ │ ├── AcknowledgeServiceAppointment.xsd │ │ │ │ │ │ ├── AcknowledgeServicePlan.xsd │ │ │ │ │ │ ├── AcknowledgeServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── AcknowledgeStandardCodes.xsd │ │ │ │ │ │ ├── AcknowledgeSubscriptionService.xsd │ │ │ │ │ │ ├── AcknowledgeValidateInitiative.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleInventory.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleInvoice.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleOrder.xsd │ │ │ │ │ │ ├── AcknowledgeVehiclePayments.xsd │ │ │ │ │ │ ├── AcknowledgeVehicleRemarketing.xsd │ │ │ │ │ │ ├── CancelPartsOrder.xsd │ │ │ │ │ │ ├── CancelRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── CancelSalesLead.xsd │ │ │ │ │ │ ├── CancelSubscriptionService.xsd │ │ │ │ │ │ ├── CancelVehicleOrder.xsd │ │ │ │ │ │ ├── CancelVehicleRemarketing.xsd │ │ │ │ │ │ ├── ChangeFinancialStatement.xsd │ │ │ │ │ │ ├── ChangePartsOrder.xsd │ │ │ │ │ │ ├── ChangePersonnel.xsd │ │ │ │ │ │ ├── ChangeRepairOrder.xsd │ │ │ │ │ │ ├── ChangeRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── ChangeSalesLead.xsd │ │ │ │ │ │ ├── ChangeServiceAppointment.xsd │ │ │ │ │ │ ├── ChangeStandardCodes.xsd │ │ │ │ │ │ ├── ChangeSubscriptionService.xsd │ │ │ │ │ │ ├── ChangeVehicleInventory.xsd │ │ │ │ │ │ ├── ChangeVehicleInvoice.xsd │ │ │ │ │ │ ├── ChangeVehicleOrder.xsd │ │ │ │ │ │ ├── ChangeVehicleRemarketing.xsd │ │ │ │ │ │ ├── ConfirmBOD.xsd │ │ │ │ │ │ ├── ConfirmServiceAdvisoryReceiptAcknowledgment.xsd │ │ │ │ │ │ ├── ConfirmServiceAppointmentAcknowledgment.xsd │ │ │ │ │ │ ├── GetDealerLocator.xsd │ │ │ │ │ │ ├── GetInitiativeDownloadRetrieval.xsd │ │ │ │ │ │ ├── GetLaborOperations.xsd │ │ │ │ │ │ ├── GetModelCodes.xsd │ │ │ │ │ │ ├── GetPartsInvoice.xsd │ │ │ │ │ │ ├── GetPartsLocator.xsd │ │ │ │ │ │ ├── GetPartsMaster.xsd │ │ │ │ │ │ ├── GetPartsOrder.xsd │ │ │ │ │ │ ├── GetPartsPickList.xsd │ │ │ │ │ │ ├── GetPartsPriceList.xsd │ │ │ │ │ │ ├── GetPartsReturn.xsd │ │ │ │ │ │ ├── GetPartsShipment.xsd │ │ │ │ │ │ ├── GetRepairOrder.xsd │ │ │ │ │ │ ├── GetServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── GetStandardCodes.xsd │ │ │ │ │ │ ├── GetVehicleInventory.xsd │ │ │ │ │ │ ├── GetVehicleInvoice.xsd │ │ │ │ │ │ ├── GetVehicleOrder.xsd │ │ │ │ │ │ ├── GetVehicleRemarketing.xsd │ │ │ │ │ │ ├── GetVehicleServiceHistory.xsd │ │ │ │ │ │ ├── GetVehicleSpecifications.xsd │ │ │ │ │ │ ├── NotifyPartsOrder.xsd │ │ │ │ │ │ ├── ProcessCreditApplication.xsd │ │ │ │ │ │ ├── ProcessCreditContract.xsd │ │ │ │ │ │ ├── ProcessCreditDecision.xsd │ │ │ │ │ │ ├── ProcessFinancialStatement.xsd │ │ │ │ │ │ ├── ProcessLaborOperations.xsd │ │ │ │ │ │ ├── ProcessPartsActivity.xsd │ │ │ │ │ │ ├── ProcessPartsInventory.xsd │ │ │ │ │ │ ├── ProcessPartsInvoice.xsd │ │ │ │ │ │ ├── ProcessPartsMaster.xsd │ │ │ │ │ │ ├── ProcessPartsOrder.xsd │ │ │ │ │ │ ├── ProcessPartsPickList.xsd │ │ │ │ │ │ ├── ProcessPartsPriceList.xsd │ │ │ │ │ │ ├── ProcessPartsReturn.xsd │ │ │ │ │ │ ├── ProcessPartsShipment.xsd │ │ │ │ │ │ ├── ProcessPersonnel.xsd │ │ │ │ │ │ ├── ProcessRepairOrder.xsd │ │ │ │ │ │ ├── ProcessRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── ProcessSalesLead.xsd │ │ │ │ │ │ ├── ProcessServiceAppointment.xsd │ │ │ │ │ │ ├── ProcessServicePlan.xsd │ │ │ │ │ │ ├── ProcessServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── ProcessStandardCodes.xsd │ │ │ │ │ │ ├── ProcessSubscriptionService.xsd │ │ │ │ │ │ ├── ProcessValidateInitiative.xsd │ │ │ │ │ │ ├── ProcessVehicleInventory.xsd │ │ │ │ │ │ ├── ProcessVehicleInvoice.xsd │ │ │ │ │ │ ├── ProcessVehicleOrder.xsd │ │ │ │ │ │ ├── ProcessVehiclePayments.xsd │ │ │ │ │ │ ├── ProcessVehicleRemarketing.xsd │ │ │ │ │ │ ├── ProposePartsOrder.xsd │ │ │ │ │ │ ├── RespondFinancialStatement.xsd │ │ │ │ │ │ ├── RespondLaborOperations.xsd │ │ │ │ │ │ ├── RespondPartsOrder.xsd │ │ │ │ │ │ ├── RespondPersonnel.xsd │ │ │ │ │ │ ├── RespondRepairOrder.xsd │ │ │ │ │ │ ├── RespondRetailDeliveryReporting.xsd │ │ │ │ │ │ ├── RespondSalesLead.xsd │ │ │ │ │ │ ├── RespondServiceAppointment.xsd │ │ │ │ │ │ ├── RespondStandardCodes.xsd │ │ │ │ │ │ ├── RespondSubscriptionService.xsd │ │ │ │ │ │ ├── RespondVehicleInventory.xsd │ │ │ │ │ │ ├── RespondVehicleInvoice.xsd │ │ │ │ │ │ ├── RespondVehicleOrder.xsd │ │ │ │ │ │ ├── RespondVehicleRemarketing.xsd │ │ │ │ │ │ ├── ShowDealerLocator.xsd │ │ │ │ │ │ ├── ShowInitiativeDownload.xsd │ │ │ │ │ │ ├── ShowLaborOperations.xsd │ │ │ │ │ │ ├── ShowModelCodes.xsd │ │ │ │ │ │ ├── ShowPartsInvoice.xsd │ │ │ │ │ │ ├── ShowPartsLocator.xsd │ │ │ │ │ │ ├── ShowPartsMaster.xsd │ │ │ │ │ │ ├── ShowPartsOrder.xsd │ │ │ │ │ │ ├── ShowPartsPickList.xsd │ │ │ │ │ │ ├── ShowPartsPriceList.xsd │ │ │ │ │ │ ├── ShowPartsReturn.xsd │ │ │ │ │ │ ├── ShowPartsShipment.xsd │ │ │ │ │ │ ├── ShowRepairOrder.xsd │ │ │ │ │ │ ├── ShowServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── ShowStandardCodes.xsd │ │ │ │ │ │ ├── ShowVehicleInventory.xsd │ │ │ │ │ │ ├── ShowVehicleInvoice.xsd │ │ │ │ │ │ ├── ShowVehicleOrder.xsd │ │ │ │ │ │ ├── ShowVehicleRemarketing.xsd │ │ │ │ │ │ ├── ShowVehicleServiceHistory.xsd │ │ │ │ │ │ ├── ShowVehicleSpecifications.xsd │ │ │ │ │ │ ├── SyncInitiativeDownload.xsd │ │ │ │ │ │ ├── UpdateLaborOperations.xsd │ │ │ │ │ │ └── UpdateSalesLead.xsd │ │ │ │ │ ├── Resources │ │ │ │ │ ├── Components │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CodeList_UnitsOfMeasureCode_XFront.xsd │ │ │ │ │ │ │ ├── CodeLists.xsd │ │ │ │ │ │ │ ├── CodeLists_NMMA.xsd │ │ │ │ │ │ │ ├── Components.xsd │ │ │ │ │ │ │ ├── DeprecatedComponents.xsd │ │ │ │ │ │ │ ├── Fields.xsd │ │ │ │ │ │ │ ├── Meta.xsd │ │ │ │ │ │ │ └── QualifiedDataTypes.xsd │ │ │ │ │ │ └── OAGIS │ │ │ │ │ │ │ ├── Common │ │ │ │ │ │ │ ├── CodeLists.xsd │ │ │ │ │ │ │ ├── Components.xsd │ │ │ │ │ │ │ ├── Fields.xsd │ │ │ │ │ │ │ └── Meta.xsd │ │ │ │ │ │ │ ├── CoreComponents │ │ │ │ │ │ │ ├── CodeList_CurrencyCode_ISO_7_04.xsd │ │ │ │ │ │ │ ├── CodeList_LanguageCode_ISO_7_04.xsd │ │ │ │ │ │ │ ├── CodeList_MIMEMediaTypeCode_IANA_7_04.xsd │ │ │ │ │ │ │ ├── CodeList_UnitCode_UNECE_7_04.xsd │ │ │ │ │ │ │ ├── CoreComponentTypes.xsd │ │ │ │ │ │ │ ├── QualifiedDataTypes.xsd │ │ │ │ │ │ │ ├── ReusableAggregateBusinessInformationEntity.xsd │ │ │ │ │ │ │ ├── ReusableAggregateCoreComponent.xsd │ │ │ │ │ │ │ └── UnqualifiedDataTypes.xsd │ │ │ │ │ │ │ ├── Nouns │ │ │ │ │ │ │ ├── BOD.xsd │ │ │ │ │ │ │ └── PriceList.xsd │ │ │ │ │ │ │ ├── OAGi License Agreement.txt │ │ │ │ │ │ │ └── Operational │ │ │ │ │ │ │ └── OrderManagementComponents.xsd │ │ │ │ │ └── Nouns │ │ │ │ │ │ ├── BOD.xsd │ │ │ │ │ │ ├── CreditApplication.xsd │ │ │ │ │ │ ├── CreditContract.xsd │ │ │ │ │ │ ├── CreditContractResponse.xsd │ │ │ │ │ │ ├── CreditDecision.xsd │ │ │ │ │ │ ├── DealerLocator.xsd │ │ │ │ │ │ ├── FinancialStatement.xsd │ │ │ │ │ │ ├── InitiativeDownload.xsd │ │ │ │ │ │ ├── InitiativeDownloadRetrieval.xsd │ │ │ │ │ │ ├── LaborOperations.xsd │ │ │ │ │ │ ├── ModelCodes.xsd │ │ │ │ │ │ ├── PartsActivity.xsd │ │ │ │ │ │ ├── PartsInventory.xsd │ │ │ │ │ │ ├── PartsInvoice.xsd │ │ │ │ │ │ ├── PartsLocator.xsd │ │ │ │ │ │ ├── PartsMaster.xsd │ │ │ │ │ │ ├── PartsOrder.xsd │ │ │ │ │ │ ├── PartsPickList.xsd │ │ │ │ │ │ ├── PartsPriceList.xsd │ │ │ │ │ │ ├── PartsReturn.xsd │ │ │ │ │ │ ├── PartsShipment.xsd │ │ │ │ │ │ ├── Personnel.xsd │ │ │ │ │ │ ├── RepairOrder.xsd │ │ │ │ │ │ ├── RetailDeliveryReporting.xsd │ │ │ │ │ │ ├── SalesLead.xsd │ │ │ │ │ │ ├── ServiceAdvisoryReceiptAcknowledgment.xsd │ │ │ │ │ │ ├── ServiceAppointment.xsd │ │ │ │ │ │ ├── ServiceAppointmentAcknowledgment.xsd │ │ │ │ │ │ ├── ServicePlan.xsd │ │ │ │ │ │ ├── ServiceProcessingAdvisory.xsd │ │ │ │ │ │ ├── StandardCodes.xsd │ │ │ │ │ │ ├── SubscriptionService.xsd │ │ │ │ │ │ ├── ValidateInitiative.xsd │ │ │ │ │ │ ├── VehicleInventory.xsd │ │ │ │ │ │ ├── VehicleInvoice.xsd │ │ │ │ │ │ ├── VehicleOrder.xsd │ │ │ │ │ │ ├── VehiclePayments.xsd │ │ │ │ │ │ ├── VehicleRemarketing.xsd │ │ │ │ │ │ ├── VehicleServiceHistory.xsd │ │ │ │ │ │ ├── VehicleServiceHistoryRetrieval.xsd │ │ │ │ │ │ └── VehicleSpecifications.xsd │ │ │ │ │ └── WSDL │ │ │ │ │ └── Templates │ │ │ │ │ ├── CancelPartsOrder.wsdl │ │ │ │ │ ├── CancelRetailDeliveryReporting.wsdl │ │ │ │ │ ├── CancelSalesLead.wsdl │ │ │ │ │ ├── CancelSubscriptionService.wsdl │ │ │ │ │ ├── CancelVehicleOrder.wsdl │ │ │ │ │ ├── CancelVehicleRemarketing.wsdl │ │ │ │ │ ├── ChangeFinancialStatement.wsdl │ │ │ │ │ ├── ChangePartsOrder.wsdl │ │ │ │ │ ├── ChangePersonnel.wsdl │ │ │ │ │ ├── ChangeRepairOrder.wsdl │ │ │ │ │ ├── ChangeRetailDeliveryReporting.wsdl │ │ │ │ │ ├── ChangeSalesLead.wsdl │ │ │ │ │ ├── ChangeServiceAppointment.wsdl │ │ │ │ │ ├── ChangeStandardCodes.wsdl │ │ │ │ │ ├── ChangeSubscriptionService.wsdl │ │ │ │ │ ├── ChangeVehicleInventory.wsdl │ │ │ │ │ ├── ChangeVehicleInvoice.wsdl │ │ │ │ │ ├── ChangeVehicleOrder.wsdl │ │ │ │ │ ├── ChangeVehicleRemarketing.wsdl │ │ │ │ │ ├── ConfirmServiceAdvisoryReceiptAcknowledgment.wsdl │ │ │ │ │ ├── ConfirmServiceAppointmentAcknowledgment.wsdl │ │ │ │ │ ├── GetDealerLocator.wsdl │ │ │ │ │ ├── GetInitiativeDownloadRetrieval.wsdl │ │ │ │ │ ├── GetLaborOperations.wsdl │ │ │ │ │ ├── GetModelCodes.wsdl │ │ │ │ │ ├── GetPartsInvoice.wsdl │ │ │ │ │ ├── GetPartsLocator.wsdl │ │ │ │ │ ├── GetPartsOrder.wsdl │ │ │ │ │ ├── GetPartsPickList.wsdl │ │ │ │ │ ├── GetPartsPriceList.wsdl │ │ │ │ │ ├── GetPartsReturn.wsdl │ │ │ │ │ ├── GetPartsShipment.wsdl │ │ │ │ │ ├── GetRepairOrder.wsdl │ │ │ │ │ ├── GetServiceProcessingAdvisory.wsdl │ │ │ │ │ ├── GetStandardCodes.wsdl │ │ │ │ │ ├── GetVehicleInventory.wsdl │ │ │ │ │ ├── GetVehicleInvoice.wsdl │ │ │ │ │ ├── GetVehicleOrder.wsdl │ │ │ │ │ ├── GetVehicleRemarketing.wsdl │ │ │ │ │ ├── GetVehicleServiceHistory.wsdl │ │ │ │ │ ├── GetVehicleSpecifications.wsdl │ │ │ │ │ ├── NotifyPartsOrder.wsdl │ │ │ │ │ ├── ProcessCreditApplication.wsdl │ │ │ │ │ ├── ProcessCreditContract.wsdl │ │ │ │ │ ├── ProcessCreditDecision.wsdl │ │ │ │ │ ├── ProcessFinancialStatement.wsdl │ │ │ │ │ ├── ProcessLaborOperations.wsdl │ │ │ │ │ ├── ProcessPartsActivity.wsdl │ │ │ │ │ ├── ProcessPartsInventory.wsdl │ │ │ │ │ ├── ProcessPartsInvoice.wsdl │ │ │ │ │ ├── ProcessPartsMaster.wsdl │ │ │ │ │ ├── ProcessPartsOrder.wsdl │ │ │ │ │ ├── ProcessPartsPickList.wsdl │ │ │ │ │ ├── ProcessPartsPriceList.wsdl │ │ │ │ │ ├── ProcessPartsReturn.wsdl │ │ │ │ │ ├── ProcessPartsShipment.wsdl │ │ │ │ │ ├── ProcessPersonnel.wsdl │ │ │ │ │ ├── ProcessRepairOrder.wsdl │ │ │ │ │ ├── ProcessRetailDeliveryReporting.wsdl │ │ │ │ │ ├── ProcessSalesLead.wsdl │ │ │ │ │ ├── ProcessServiceAppointment.wsdl │ │ │ │ │ ├── ProcessServicePlan.wsdl │ │ │ │ │ ├── ProcessServiceProcessingAdvisory.wsdl │ │ │ │ │ ├── ProcessStandardCodes.wsdl │ │ │ │ │ ├── ProcessSubscriptionService.wsdl │ │ │ │ │ ├── ProcessValidateInitiative.wsdl │ │ │ │ │ ├── ProcessVehicleInventory.wsdl │ │ │ │ │ ├── ProcessVehicleInvoice.wsdl │ │ │ │ │ ├── ProcessVehicleOrder.wsdl │ │ │ │ │ ├── ProcessVehiclePayments.wsdl │ │ │ │ │ ├── ProcessVehicleRemarketing.wsdl │ │ │ │ │ ├── ProposePartsOrder.wsdl │ │ │ │ │ ├── STARTransport2005.wsdl │ │ │ │ │ ├── STARWSDLDataTypes.xsd │ │ │ │ │ ├── SyncInitiativeDownload.wsdl │ │ │ │ │ ├── UpdateLaborOperations.wsdl │ │ │ │ │ └── UpdateSalesLead.wsdl │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ ├── AcknowledgeCreditApplication.xml │ │ │ │ ├── AcknowledgeCreditContractResponse.txml │ │ │ │ ├── AcknowledgeCreditDecision.txml │ │ │ │ ├── AcknowledgeFinancialStatement.txml │ │ │ │ ├── AcknowledgeLaborOperations.txml │ │ │ │ ├── AcknowledgePartsActivity.txml │ │ │ │ ├── AcknowledgePartsInventory.txml │ │ │ │ ├── AcknowledgePartsInvoice.txml │ │ │ │ ├── AcknowledgePartsMaster.txml │ │ │ │ ├── AcknowledgePartsOrder.txml │ │ │ │ ├── AcknowledgePartsPicklist.txml │ │ │ │ ├── AcknowledgePartsReturn.txml │ │ │ │ ├── AcknowledgePartsShipment.txml │ │ │ │ ├── AcknowledgePersonnel.txml │ │ │ │ ├── AcknowledgeRepairOrder.txml │ │ │ │ ├── AcknowledgeRetailDeliveryReporting.txml │ │ │ │ ├── AcknowledgeSalesLead.txml │ │ │ │ ├── AcknowledgeServiceAppointment.txml │ │ │ │ ├── AcknowledgeServicePlan.txml │ │ │ │ ├── AcknowledgeServiceProcessingAdvisory.txml │ │ │ │ ├── AcknowledgeStandardCodes.txml │ │ │ │ ├── AcknowledgeSubscriptionService.txml │ │ │ │ ├── AcknowledgeValidateInitiative.txml │ │ │ │ ├── AcknowledgeVehicleInventory.txml │ │ │ │ ├── AcknowledgeVehicleInvoice.txml │ │ │ │ ├── AcknowledgeVehicleOrder.txml │ │ │ │ ├── AcknowledgeVehiclePayments.txml │ │ │ │ ├── AcknowledgeVehicleRemarketing.txml │ │ │ │ ├── CancelPartsOrder.txml │ │ │ │ ├── CancelRetailDeliveryReporting.txml │ │ │ │ ├── CancelSalesLead.txml │ │ │ │ ├── CancelSubscriptionService.txml │ │ │ │ ├── CancelVehicleOrder.txml │ │ │ │ ├── CancelVehicleRemarketing.txml │ │ │ │ ├── ChangeFinancialStatement.txml │ │ │ │ ├── ChangePartsOrder.txml │ │ │ │ ├── ChangePersonnel.txml │ │ │ │ ├── ChangeRepairOrder.txml │ │ │ │ ├── ChangeRetailDeliveryReporting.txml │ │ │ │ ├── ChangeSalesLead.txml │ │ │ │ ├── ChangeServiceAppointment.txml │ │ │ │ ├── ChangeStandardCodes.txml │ │ │ │ ├── ChangeSubscriptionService.txml │ │ │ │ ├── ChangeVehicleInventory.txml │ │ │ │ ├── ChangeVehicleInvoice.txml │ │ │ │ ├── ChangeVehicleOrder.txml │ │ │ │ ├── ChangeVehicleRemarketing.txml │ │ │ │ ├── ConfirmBOD.txml │ │ │ │ ├── ConfirmServiceAdvisoryReceiptAcknowledgment.txml │ │ │ │ ├── ConfirmServiceAppointmentAcknowledgment.txml │ │ │ │ ├── GetDealerLocator.txml │ │ │ │ ├── GetInitiativeDownloadRetrieval.txml │ │ │ │ ├── GetLaborOperations.txml │ │ │ │ ├── GetModelCodes.txml │ │ │ │ ├── GetPartsInvoice.txml │ │ │ │ ├── GetPartsLocator.txml │ │ │ │ ├── GetPartsMaster.txml │ │ │ │ ├── GetPartsOrder.txml │ │ │ │ ├── GetPartsPickList.txml │ │ │ │ ├── GetPartsReturn.txml │ │ │ │ ├── GetPartsShipment.txml │ │ │ │ ├── GetRepairOrder.txml │ │ │ │ ├── GetServiceProcessingAdvisory.txml │ │ │ │ ├── GetStandardCodes.txml │ │ │ │ ├── GetVehicleInventory.txml │ │ │ │ ├── GetVehicleInvoice.txml │ │ │ │ ├── GetVehicleOrder.txml │ │ │ │ ├── GetVehicleRemarketing.txml │ │ │ │ ├── GetVehicleServiceHistory.txml │ │ │ │ ├── GetVehicleSpecifications.txml │ │ │ │ ├── ProcessCreditApplication.txml │ │ │ │ ├── ProcessCreditContract.txml │ │ │ │ ├── ProcessCreditDecision.txml │ │ │ │ ├── ProcessFinancialStatement.txml │ │ │ │ ├── ProcessLaborOperations.txml │ │ │ │ ├── ProcessPartsActivity.txml │ │ │ │ ├── ProcessPartsInventory.txml │ │ │ │ ├── ProcessPartsInvoice.txml │ │ │ │ ├── ProcessPartsMaster.txml │ │ │ │ ├── ProcessPartsOrder.txml │ │ │ │ ├── ProcessPartsPicklist.txml │ │ │ │ ├── ProcessPartsReturn.txml │ │ │ │ ├── ProcessPartsShipment.txml │ │ │ │ ├── ProcessPersonnel.txml │ │ │ │ ├── ProcessRepairOrder.txml │ │ │ │ ├── ProcessRetailDeliveryReporting.txml │ │ │ │ ├── ProcessSalesLead.txml │ │ │ │ ├── ProcessServiceAppointment.txml │ │ │ │ ├── ProcessServicePlan.txml │ │ │ │ ├── ProcessServiceProcessingAdvisory.txml │ │ │ │ ├── ProcessStandardCodes.txml │ │ │ │ ├── ProcessSubscriptionService.txml │ │ │ │ ├── ProcessValidateInitiative.txml │ │ │ │ ├── ProcessVehicleInventory.txml │ │ │ │ ├── ProcessVehicleInvoice.txml │ │ │ │ ├── ProcessVehicleOrder.txml │ │ │ │ ├── ProcessVehiclePayments.txml │ │ │ │ ├── ProcessVehicleRemarketing.txml │ │ │ │ ├── RespondFinancialStatement.txml │ │ │ │ ├── RespondLaborOperations.txml │ │ │ │ ├── RespondPartsOrder.txml │ │ │ │ ├── RespondPersonnel.txml │ │ │ │ ├── RespondRepairOrder.txml │ │ │ │ ├── RespondRetailDeliveryReporting.txml │ │ │ │ ├── RespondSalesLead.txml │ │ │ │ ├── RespondServiceAppointment.txml │ │ │ │ ├── RespondStandardCodes.txml │ │ │ │ ├── RespondSubscriptionService.txml │ │ │ │ ├── RespondVehicleInventory.txml │ │ │ │ ├── RespondVehicleInvoice.txml │ │ │ │ ├── RespondVehicleOrder.txml │ │ │ │ ├── RespondVehicleRemarketing.txml │ │ │ │ ├── ShowInitiativeDownload.txml │ │ │ │ ├── ShowLaborOperations.txml │ │ │ │ ├── ShowModelCodes.txml │ │ │ │ ├── ShowPartsInvoice.txml │ │ │ │ ├── ShowPartsLocator.txml │ │ │ │ ├── ShowPartsMaster.txml │ │ │ │ ├── ShowPartsOrder.txml │ │ │ │ ├── ShowPartsPickList.txml │ │ │ │ ├── ShowPartsReturn.txml │ │ │ │ ├── ShowPartsShipment.txml │ │ │ │ ├── ShowRepairOrder.txml │ │ │ │ ├── ShowServiceProcessingAdvisory.txml │ │ │ │ ├── ShowStandardCodes.txml │ │ │ │ ├── ShowVehicleInventory.txml │ │ │ │ ├── ShowVehicleInvoice.txml │ │ │ │ ├── ShowVehicleOrder.txml │ │ │ │ ├── ShowVehicleRemarketing.txml │ │ │ │ ├── ShowVehicleServiceHistory.txml │ │ │ │ ├── ShowVehicleSpecifications.txml │ │ │ │ ├── SyncInitiativeDownload.txml │ │ │ │ ├── UpdateLaborOperations.txml │ │ │ │ └── UpdateSalesLead.txml │ │ ├── tp │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tests │ │ │ │ │ └── tp │ │ │ │ │ └── RunTpPlugin.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ ├── transient-ids │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── uniprot │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── uniprot2008_rev1.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── P01189.xml │ │ ├── verylong │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── hyperjaxb3.names.properties │ │ │ │ │ └── schema.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ ├── web │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── hyperjaxb2.names.properties │ │ │ │ │ ├── j2ee_1_4.xsd │ │ │ │ │ ├── j2ee_web_services_client_1_1.xsd │ │ │ │ │ ├── jsp_2_0.xsd │ │ │ │ │ ├── web-app_2_4.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── .placeholder │ │ ├── xacml │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── access_control-xacml-2.0-policy-schema-os.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── 1.xml │ │ └── xmldsig │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ └── xmldsig-core-schema.xsd │ │ │ └── test │ │ │ ├── resources │ │ │ ├── log4j.properties │ │ │ └── persistence.properties │ │ │ └── samples │ │ │ ├── .placeholder │ │ │ ├── 1.xml │ │ │ └── signed.xml │ └── tutorials │ │ ├── po │ │ ├── pom.xml │ │ ├── step-one │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ └── po.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── ejb │ │ │ │ │ └── tutorials │ │ │ │ │ └── po │ │ │ │ │ └── stepone │ │ │ │ │ ├── HsqlBigDecimalTest.java │ │ │ │ │ ├── JAXBAndJPATest.java │ │ │ │ │ ├── JAXBTest.java │ │ │ │ │ └── JPATest.java │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ ├── step-three │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── .placeholder │ │ │ │ └── resources │ │ │ │ │ ├── bindings.xjb │ │ │ │ │ └── po.xsd │ │ │ │ └── test │ │ │ │ ├── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── persistence.properties │ │ │ │ └── samples │ │ │ │ └── po.xml │ │ └── step-two │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ └── resources │ │ │ │ ├── bindings.xjb │ │ │ │ └── po.xsd │ │ │ └── test │ │ │ ├── resources │ │ │ ├── log4j.properties │ │ │ └── persistence.properties │ │ │ └── samples │ │ │ └── po.xml │ │ └── pom.xml ├── etc │ ├── JAXB 2.1.pdf │ ├── announcements │ │ ├── Hyperjaxb3Release0.2Announce.html │ │ ├── Hyperjaxb3Release0.2Announce.tss.html │ │ ├── Hyperjaxb3Release0.3Announce.html │ │ ├── Hyperjaxb3Release0.3Announce.wiki │ │ └── hyperjaxb3Release0.3.wiki │ ├── jaxb-1_0-fr-spec.pdf │ ├── jaxb-2_0-fr-spec.pdf │ └── promotion.txt ├── maven │ ├── plugin │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── maven │ │ │ │ │ └── Hyperjaxb3Mojo.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── m2e │ │ │ │ └── lifecycle-mapping-metadata.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── maven │ │ │ │ └── tests │ │ │ │ └── Hyperjaxb3MojoTest.java │ │ │ └── resources │ │ │ └── purchaseorder.xsd │ ├── pom.xml │ └── testing │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── hyperjaxb3 │ │ │ └── maven │ │ │ └── ejb │ │ │ └── test │ │ │ └── RunEjbHyperjaxb3Mojo.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── hyperjaxb3 │ │ │ └── maven │ │ │ └── ejb │ │ │ └── test │ │ │ └── tests │ │ │ └── EjbHyperjaxb3MojoTest.java │ │ └── resources │ │ └── purchaseorder.xsd ├── misc │ ├── dynamic │ │ ├── build-1.6.bat │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ ├── .placeholder │ │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── ejb │ │ │ │ └── dynamic │ │ │ │ └── DynamicCompiler.java │ │ │ └── test │ │ │ ├── etc │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── tools │ │ │ │ └── tests │ │ │ │ └── Test.java │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── ejb │ │ │ │ └── dynamic │ │ │ │ └── tests │ │ │ │ ├── TestCompile.java │ │ │ │ └── TestDynamicCompiler.java │ │ │ └── resources │ │ │ ├── log4j.properties │ │ │ ├── org │ │ │ └── jvnet │ │ │ │ └── hyperjaxb3 │ │ │ │ └── ejb │ │ │ │ └── dynamic │ │ │ │ └── tests │ │ │ │ ├── bindings.xjb │ │ │ │ ├── po.xml │ │ │ │ └── schema.xsd │ │ │ └── persistence.properties │ ├── jdo │ │ ├── pom.xml │ │ ├── roundtrip │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── jdo │ │ │ │ │ └── test │ │ │ │ │ ├── AbstractJDOSamplesTest.java │ │ │ │ │ ├── AbstractJDOTest.java │ │ │ │ │ └── RoundtripTest.java │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── jdo │ │ │ │ │ └── test │ │ │ │ │ └── tests │ │ │ │ │ ├── A.java │ │ │ │ │ ├── B.java │ │ │ │ │ ├── JDOTest.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ └── RoundtripTest.java │ │ │ │ ├── resources │ │ │ │ ├── jpox.properties │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── hyperjaxb3 │ │ │ │ │ └── jdo │ │ │ │ │ └── test │ │ │ │ │ └── tests │ │ │ │ │ └── package.jdo │ │ │ │ └── samples │ │ │ │ └── sample1.xml │ │ ├── sample-hotel │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jpox │ │ │ │ │ │ └── samples │ │ │ │ │ │ ├── employee │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── Department.java │ │ │ │ │ │ │ ├── Employee.java │ │ │ │ │ │ │ └── Project.java │ │ │ │ │ │ └── hotel │ │ │ │ │ │ ├── Hotel.java │ │ │ │ │ │ └── Room.java │ │ │ │ └── resources │ │ │ │ │ └── org │ │ │ │ │ └── jpox │ │ │ │ │ └── samples │ │ │ │ │ ├── employee │ │ │ │ │ └── model │ │ │ │ │ │ ├── Department.jdo │ │ │ │ │ │ ├── Employee.jdo │ │ │ │ │ │ └── Project.jdo │ │ │ │ │ └── hotel │ │ │ │ │ └── package.jdo │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jpox │ │ │ │ │ └── samples │ │ │ │ │ ├── employee │ │ │ │ │ └── JDOTest.java │ │ │ │ │ └── hotel │ │ │ │ │ └── JDOTest.java │ │ │ │ └── resources │ │ │ │ └── jpox.properties │ │ └── schemas │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── jdo_2_0.xsd │ │ │ ├── jdo_orm_2_0.xsd │ │ │ └── jdoquery_2_0.xsd │ └── templates │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── assembly │ │ ├── ant-src.xml │ │ └── maven-src.xml ├── pom.xml └── src │ ├── main │ └── resources │ │ └── config │ │ ├── maven-checks.xml │ │ └── maven-header.txt │ └── site.xml ├── jaxb-annotate-parent ├── plugin │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── plugin │ │ │ │ ├── AnnotationTarget.java │ │ │ │ ├── annotate │ │ │ │ ├── AnnotatePlugin.java │ │ │ │ ├── AnnotatingArrayValueVisitor.java │ │ │ │ ├── AnnotatingSingleValueVisitor.java │ │ │ │ ├── AnnotatingVisitor.java │ │ │ │ └── Annotator.java │ │ │ │ ├── removeannotation │ │ │ │ └── RemoveAnnotationPlugin.java │ │ │ │ └── removexmlannotation │ │ │ │ └── RemoveXmlAnnotationPlugin.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.sun.tools.xjc.Plugin │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── plugin │ │ │ └── annotate │ │ │ └── tests │ │ │ ├── A.java │ │ │ ├── B.java │ │ │ ├── D.java │ │ │ ├── E.java │ │ │ └── F.java │ │ └── resources │ │ └── schema.xsd ├── pom.xml ├── samples │ ├── annotate │ │ ├── pom.xml │ │ ├── project-build.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ └── resources │ │ │ │ ├── bindings.xjb │ │ │ │ └── schema.xsd │ │ │ └── test │ │ │ ├── java │ │ │ └── .placeholder │ │ │ └── resources │ │ │ └── .placeholder │ ├── pom.xml │ └── src │ │ └── main │ │ └── assembly │ │ ├── ant-src.xml │ │ └── maven-src.xml └── tests │ ├── annotate │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── bindings.xjb │ │ │ └── schema.xsd │ │ └── test │ │ └── java │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── tests │ │ └── annotate │ │ ├── IssueJAP9TypeTest.java │ │ └── RunAnnotatePlugin.java │ ├── annotations │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── plugin │ │ └── annotate │ │ └── tests │ │ └── annotations │ │ ├── A.java │ │ ├── Alpha.java │ │ ├── B.java │ │ ├── D.java │ │ ├── Digits.java │ │ ├── E.java │ │ ├── F.java │ │ └── Marked.java │ ├── annox │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── binding.xjb │ │ └── schema.xsd │ ├── base-dependent │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── xsd │ │ ├── base.xsd │ │ └── dependent.xsd │ ├── issues │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── binding.xjb │ │ │ ├── class-annotate-target-package.xsd │ │ │ ├── class-annotatePackage.xsd │ │ │ ├── class.xsd │ │ │ ├── element-annotate-target-package.xsd │ │ │ ├── element-annotatePackage.xsd │ │ │ ├── element.xsd │ │ │ ├── enum-annotate-target-enum-fromValue-method.xsd │ │ │ ├── enum-annotate-target-enum-value-method.xsd │ │ │ ├── enum-annotate-target-package.xsd │ │ │ ├── enum-annotateFromValueMethod.xsd │ │ │ ├── enum-annotatePackage.xsd │ │ │ ├── enum-annotateValueMethod.xsd │ │ │ ├── enum-constant-annotate-target-package.xsd │ │ │ ├── enum-constant-annotatePackage.xsd │ │ │ ├── enum-constant.xsd │ │ │ ├── enum.xsd │ │ │ ├── field-annotate-target-package.xsd │ │ │ ├── field-annotatePackage.xsd │ │ │ ├── field.xsd │ │ │ ├── org │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── issues │ │ │ │ └── Gh24Type.value.xml │ │ │ └── schema.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── issues │ │ │ ├── Gh26Test.java │ │ │ ├── Gh36Test.java │ │ │ ├── _enum │ │ │ ├── annotateEnumFromValueMethod │ │ │ │ └── IssueGH11AnnotateEnumFromValueMethodTypeTest.java │ │ │ └── annotateEnumValueMethod │ │ │ │ └── IssueGH11AnnotateEnumValueMethodTypeTest.java │ │ │ └── tests │ │ │ ├── Issue1Test.java │ │ │ ├── RunIssuesPlugin.java │ │ │ └── RunPlugins.java │ │ ├── resources │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── issues │ │ │ ├── issueJIIB44_0.xml │ │ │ ├── issueJIIB44_1.xml │ │ │ └── issueJIIB44_2.xml │ │ └── samples │ │ └── issue16[0].xml │ ├── one │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb2_commons │ │ │ │ └── tests │ │ │ │ └── one │ │ │ │ └── CustomBooleanAdapter.java │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── schema.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb2_commons │ │ │ └── tests │ │ │ └── one │ │ │ ├── JavaTypeExampleTest.java │ │ │ └── RunOnePlugin.java │ │ └── resources │ │ └── log4j.properties │ ├── pom.xml │ └── removexmlannotate │ ├── pom.xml │ └── src │ ├── main │ └── resources │ │ └── schema.xsd │ └── test │ └── java │ └── org │ └── jvnet │ └── jaxb │ └── tests │ └── annotate │ ├── IssueJAP9TypeTest.java │ └── RunAnnotatePlugin.java ├── jaxb-annox-parent ├── jaxb-annox │ ├── META-INF │ │ └── MANIFEST.MF │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── annox │ │ │ ├── Constants.java │ │ │ ├── annotation │ │ │ ├── AnnotationClassNotFoundException.java │ │ │ └── NoSuchAnnotationFieldException.java │ │ │ ├── io │ │ │ └── NestedIOException.java │ │ │ ├── javaparser │ │ │ ├── AnnotationExprParser.java │ │ │ └── ast │ │ │ │ └── visitor │ │ │ │ └── AbstractGenericExpressionVisitor.java │ │ │ ├── model │ │ │ ├── XAnnotated.java │ │ │ ├── XAnnotatedElement.java │ │ │ ├── XAnnotation.java │ │ │ ├── XAnnotationFieldValueVisitor.java │ │ │ ├── XAnnotationFieldValueVisitorAdapter.java │ │ │ ├── XAnnotationFieldVisitor.java │ │ │ ├── XAnnotationInvocationHandler.java │ │ │ ├── XClass.java │ │ │ ├── XConstructor.java │ │ │ ├── XField.java │ │ │ ├── XMember.java │ │ │ ├── XMethod.java │ │ │ ├── XPackage.java │ │ │ ├── XParameter.java │ │ │ └── annotation │ │ │ │ ├── field │ │ │ │ ├── XAnnotationField.java │ │ │ │ ├── XArrayAnnotationField.java │ │ │ │ └── XSingleAnnotationField.java │ │ │ │ └── value │ │ │ │ ├── AbstractBasicXAnnotationValueVisitor.java │ │ │ │ ├── XAnnotationValue.java │ │ │ │ ├── XAnnotationValueVisitor.java │ │ │ │ ├── XArrayClassAnnotationValue.java │ │ │ │ ├── XBooleanAnnotationValue.java │ │ │ │ ├── XByteAnnotationValue.java │ │ │ │ ├── XCharAnnotationValue.java │ │ │ │ ├── XClassAnnotationValue.java │ │ │ │ ├── XClassByNameAnnotationValue.java │ │ │ │ ├── XDoubleAnnotationValue.java │ │ │ │ ├── XDynamicAnnotationValue.java │ │ │ │ ├── XEnumAnnotationValue.java │ │ │ │ ├── XEnumByNameAnnotationValue.java │ │ │ │ ├── XFloatAnnotationValue.java │ │ │ │ ├── XIntAnnotationValue.java │ │ │ │ ├── XLongAnnotationValue.java │ │ │ │ ├── XShortAnnotationValue.java │ │ │ │ ├── XStaticAnnotationValue.java │ │ │ │ ├── XStringAnnotationValue.java │ │ │ │ └── XXAnnotationAnnotationValue.java │ │ │ ├── parser │ │ │ ├── XAnnotationArrayAnnotationFieldParser.java │ │ │ ├── XAnnotationFieldParser.java │ │ │ ├── XAnnotationParser.java │ │ │ ├── XAnnotationSingleAnnotationFieldParser.java │ │ │ ├── XArrayAnnotationFieldParser.java │ │ │ ├── XGenericFieldParser.java │ │ │ ├── XSingleAnnotationFieldParser.java │ │ │ ├── XXAnnotationArrayAnnotationFieldParser.java │ │ │ ├── XXAnnotationSingleAnnotationFieldParser.java │ │ │ ├── exception │ │ │ │ ├── AnnotationElementParseException.java │ │ │ │ ├── AnnotationExpressionParseException.java │ │ │ │ ├── AnnotationStringParseException.java │ │ │ │ └── ValueParseException.java │ │ │ ├── java │ │ │ │ └── visitor │ │ │ │ │ ├── BooleanExpressionVisitor.java │ │ │ │ │ ├── ByteExpressionVisitor.java │ │ │ │ │ ├── CharacterExpressionVisitor.java │ │ │ │ │ ├── ClassExpressionVisitor.java │ │ │ │ │ ├── DoubleExpressionVisitor.java │ │ │ │ │ ├── EnumExpressionVisitor.java │ │ │ │ │ ├── ExpressionVisitor.java │ │ │ │ │ ├── FloatExpressionVisitor.java │ │ │ │ │ ├── IntegerExpressionVisitor.java │ │ │ │ │ ├── LongExpressionVisitor.java │ │ │ │ │ ├── ShortExpressionVisitor.java │ │ │ │ │ └── StringExpressionVisitor.java │ │ │ └── value │ │ │ │ ├── XAnnotationValueParser.java │ │ │ │ ├── XBooleanAnnotationValueParser.java │ │ │ │ ├── XByteAnnotationValueParser.java │ │ │ │ ├── XCharAnnotationValueParser.java │ │ │ │ ├── XClassAnnotationValueParser.java │ │ │ │ ├── XDoubleAnnotationValueParser.java │ │ │ │ ├── XEnumAnnotationValueParser.java │ │ │ │ ├── XFloatAnnotationValueParser.java │ │ │ │ ├── XIntAnnotationValueParser.java │ │ │ │ ├── XLongAnnotationValueParser.java │ │ │ │ ├── XShortAnnotationValueParser.java │ │ │ │ └── XStringAnnotationValueParser.java │ │ │ ├── reader │ │ │ ├── XReader.java │ │ │ └── resourced │ │ │ │ ├── NClass.java │ │ │ │ ├── NConstructor.java │ │ │ │ ├── NField.java │ │ │ │ ├── NMethod.java │ │ │ │ ├── NPackage.java │ │ │ │ ├── NParameter.java │ │ │ │ ├── NParser.java │ │ │ │ ├── NXConverter.java │ │ │ │ ├── ResourcedXReader.java │ │ │ │ └── package-info.java │ │ │ ├── reflect │ │ │ ├── AnnotatedElementException.java │ │ │ ├── AnnotatedElementFactory.java │ │ │ ├── ConstructorAnnotatedElement.java │ │ │ ├── DirectAnnotatedElementFactory.java │ │ │ ├── DualAnnotatedElementFactory.java │ │ │ ├── MethodAnnotatedElement.java │ │ │ ├── ParameterizedAnnotatedElement.java │ │ │ └── ResourcedAnnotatedElementFactory.java │ │ │ ├── util │ │ │ ├── AnnotationElementUtils.java │ │ │ ├── ClassUtils.java │ │ │ ├── ObjectUtils.java │ │ │ ├── ReflectionUtils.java │ │ │ ├── StringUtils.java │ │ │ └── Validate.java │ │ │ └── xml │ │ │ └── bind │ │ │ ├── AnnoxAnnotationReader.java │ │ │ └── LocatableUtils.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── annox │ │ │ ├── demos │ │ │ └── guide │ │ │ │ ├── Comment.java │ │ │ │ ├── DemoClass.java │ │ │ │ ├── MyAnnotation.java │ │ │ │ ├── MyClass.java │ │ │ │ └── tests │ │ │ │ ├── DemoClassTest.java │ │ │ │ └── MyClassTest.java │ │ │ ├── model │ │ │ └── test │ │ │ │ ├── AnnotationWithIntegerField.java │ │ │ │ └── AnnotationWithIntegerFieldTest.java │ │ │ ├── parser │ │ │ └── tests │ │ │ │ ├── A.java │ │ │ │ ├── B.java │ │ │ │ ├── D.java │ │ │ │ ├── E.java │ │ │ │ ├── Eight.java │ │ │ │ ├── Eleven.java │ │ │ │ ├── F.java │ │ │ │ ├── Five.java │ │ │ │ ├── Four.java │ │ │ │ ├── G.java │ │ │ │ ├── H.java │ │ │ │ ├── I.java │ │ │ │ ├── J.java │ │ │ │ ├── JAXBDemoTest.java │ │ │ │ ├── JavaTypeParserTest.java │ │ │ │ ├── K.java │ │ │ │ ├── L.java │ │ │ │ ├── M.java │ │ │ │ ├── Nine.java │ │ │ │ ├── One.java │ │ │ │ ├── Seven.java │ │ │ │ ├── Six.java │ │ │ │ ├── Ten.java │ │ │ │ ├── Three.java │ │ │ │ ├── Twelve.java │ │ │ │ ├── Two.java │ │ │ │ ├── XAnnotationParserAnnotationExprTest.java │ │ │ │ └── XAnnotationParserTest.java │ │ │ ├── reader │ │ │ └── resourced │ │ │ │ └── tests │ │ │ │ ├── Alpha.java │ │ │ │ ├── Eleven.java │ │ │ │ ├── Epsilon.java │ │ │ │ ├── One.java │ │ │ │ ├── ResourcedXReaderTests.java │ │ │ │ └── Twelve.java │ │ │ ├── tests │ │ │ └── ProxyTest.java │ │ │ └── util │ │ │ └── tests │ │ │ ├── ClassUtilsTest.java │ │ │ └── ReflectionUtilsTest.java │ │ └── resources │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── annox │ │ ├── demos │ │ └── guide │ │ │ ├── DemoClass.ann.xml │ │ │ ├── MyClass.ann.xml │ │ │ └── package-info.ann.xml │ │ ├── parser │ │ └── tests │ │ │ ├── d.xml │ │ │ ├── eight.txt │ │ │ ├── eight.xml │ │ │ ├── eleven.txt │ │ │ ├── eleven.xml │ │ │ ├── field.xml │ │ │ ├── fieldBridge.xml │ │ │ ├── five.txt │ │ │ ├── five.xml │ │ │ ├── h.xml │ │ │ ├── j.xml │ │ │ ├── k.xml │ │ │ ├── l.xml │ │ │ ├── m.xml │ │ │ ├── n.xml │ │ │ ├── nine.txt │ │ │ ├── nine.xml │ │ │ ├── o.xml │ │ │ ├── one.txt │ │ │ ├── one.xml │ │ │ ├── package-info.java │ │ │ ├── seven.txt │ │ │ ├── seven.xml │ │ │ ├── six.txt │ │ │ ├── six.xml │ │ │ ├── ten.txt │ │ │ ├── ten.xml │ │ │ ├── three.txt │ │ │ ├── three.xml │ │ │ ├── twelve.txt │ │ │ ├── twelve.xml │ │ │ ├── two.txt │ │ │ └── two.xml │ │ └── reader │ │ └── resourced │ │ └── tests │ │ └── One.ann.xml ├── pom.xml └── samples │ ├── po │ ├── pom.xml │ ├── project-build.xml │ ├── project-pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── annox │ │ │ │ └── samples │ │ │ │ └── po │ │ │ │ ├── BigDecimalAdapter.java │ │ │ │ ├── Items.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── PurchaseOrderType.java │ │ │ │ └── USAddress.java │ │ └── resources │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── annox │ │ │ └── samples │ │ │ └── po │ │ │ ├── Items$Item.ann.xml │ │ │ └── package-info.ann.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── annox │ │ │ └── samples │ │ │ └── po │ │ │ └── tests │ │ │ └── AnnotationReaderTest.java │ │ └── resources │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── annox │ │ └── samples │ │ └── po │ │ └── tests │ │ └── po.xml │ ├── pom.xml │ └── src │ └── main │ └── assembly │ ├── ant-src.xml │ └── maven-src.xml ├── jaxb-bom-parent ├── jaxb-bom │ └── pom.xml └── pom.xml ├── jaxb-plugins-parent ├── TODO.md ├── jaxb-plugins-ant │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── xjc │ │ └── XJCTask.java ├── jaxb-plugins-runtime │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ ├── i18n │ │ │ │ └── Reportable.java │ │ │ │ ├── lang │ │ │ │ ├── Child.java │ │ │ │ ├── ClassUtils.java │ │ │ │ ├── ContextUtils.java │ │ │ │ ├── CopyStrategy.java │ │ │ │ ├── CopyTo.java │ │ │ │ ├── DefaultCopyStrategy.java │ │ │ │ ├── DefaultEqualsStrategy.java │ │ │ │ ├── DefaultHashCodeStrategy.java │ │ │ │ ├── DefaultMergeStrategy.java │ │ │ │ ├── DefaultToStringStrategy.java │ │ │ │ ├── EnumToStringStrategy.java │ │ │ │ ├── EnumValue.java │ │ │ │ ├── Equals.java │ │ │ │ ├── EqualsStrategy.java │ │ │ │ ├── HashCode.java │ │ │ │ ├── HashCodeStrategy.java │ │ │ │ ├── JAXBCopyStrategy.java │ │ │ │ ├── JAXBEqualsStrategy.java │ │ │ │ ├── JAXBHashCodeStrategy.java │ │ │ │ ├── JAXBMergeCollectionsStrategy.java │ │ │ │ ├── JAXBMergeStrategy.java │ │ │ │ ├── JAXBToStringStrategy.java │ │ │ │ ├── MergeFrom.java │ │ │ │ ├── MergeStrategy.java │ │ │ │ ├── StringUtils.java │ │ │ │ ├── ToString.java │ │ │ │ ├── ToStringStrategy.java │ │ │ │ └── Validate.java │ │ │ │ ├── locator │ │ │ │ ├── AbstractObjectLocator.java │ │ │ │ ├── DefaultItemObjectLocator.java │ │ │ │ ├── DefaultPropertyObjectLocator.java │ │ │ │ ├── DefaultRootObjectLocator.java │ │ │ │ ├── ItemObjectLocator.java │ │ │ │ ├── ObjectLocator.java │ │ │ │ ├── PropertyObjectLocator.java │ │ │ │ ├── RootObjectLocator.java │ │ │ │ └── util │ │ │ │ │ └── LocatorUtils.java │ │ │ │ ├── xml │ │ │ │ ├── bind │ │ │ │ │ ├── AfterMarshallCallback.java │ │ │ │ │ ├── AfterUnmarshallCallback.java │ │ │ │ │ ├── BeforeMarshallCallback.java │ │ │ │ │ ├── BeforeUnmarshallCallback.java │ │ │ │ │ ├── ContextPathAware.java │ │ │ │ │ ├── annotation │ │ │ │ │ │ └── adapters │ │ │ │ │ │ │ └── CommaDelimitedStringAdapter.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── MAnyAttributePropertyInfo.java │ │ │ │ │ │ ├── MAnyElementPropertyInfo.java │ │ │ │ │ │ ├── MAttributePropertyInfo.java │ │ │ │ │ │ ├── MBuiltinLeafInfo.java │ │ │ │ │ │ ├── MClassInfo.java │ │ │ │ │ │ ├── MClassRef.java │ │ │ │ │ │ ├── MClassTypeInfo.java │ │ │ │ │ │ ├── MClassTypeInfoVisitor.java │ │ │ │ │ │ ├── MContained.java │ │ │ │ │ │ ├── MContainer.java │ │ │ │ │ │ ├── MCustomizable.java │ │ │ │ │ │ ├── MCustomization.java │ │ │ │ │ │ ├── MCustomizations.java │ │ │ │ │ │ ├── MDefaultValue.java │ │ │ │ │ │ ├── MElement.java │ │ │ │ │ │ ├── MElementInfo.java │ │ │ │ │ │ ├── MElementPropertyInfo.java │ │ │ │ │ │ ├── MElementRefPropertyInfo.java │ │ │ │ │ │ ├── MElementRefsPropertyInfo.java │ │ │ │ │ │ ├── MElementTypeInfo.java │ │ │ │ │ │ ├── MElementTypeInfos.java │ │ │ │ │ │ ├── MElementTypeRef.java │ │ │ │ │ │ ├── MElementsPropertyInfo.java │ │ │ │ │ │ ├── MEnumConstantInfo.java │ │ │ │ │ │ ├── MEnumLeafInfo.java │ │ │ │ │ │ ├── MID.java │ │ │ │ │ │ ├── MIDREF.java │ │ │ │ │ │ ├── MIDREFS.java │ │ │ │ │ │ ├── MList.java │ │ │ │ │ │ ├── MMixable.java │ │ │ │ │ │ ├── MModelInfo.java │ │ │ │ │ │ ├── MNillable.java │ │ │ │ │ │ ├── MPackageInfo.java │ │ │ │ │ │ ├── MPackaged.java │ │ │ │ │ │ ├── MPackagedTypeInfo.java │ │ │ │ │ │ ├── MPackagedTypeInfoVisitor.java │ │ │ │ │ │ ├── MPropertyInfo.java │ │ │ │ │ │ ├── MPropertyInfoVisitor.java │ │ │ │ │ │ ├── MSingleTypePropertyInfo.java │ │ │ │ │ │ ├── MSourced.java │ │ │ │ │ │ ├── MTargeted.java │ │ │ │ │ │ ├── MTransientPropertyInfo.java │ │ │ │ │ │ ├── MTypeInfo.java │ │ │ │ │ │ ├── MTypeInfoVisitor.java │ │ │ │ │ │ ├── MTyped.java │ │ │ │ │ │ ├── MValuePropertyInfo.java │ │ │ │ │ │ ├── MWildcard.java │ │ │ │ │ │ ├── MWildcardTypeInfo.java │ │ │ │ │ │ ├── MWrappable.java │ │ │ │ │ │ ├── concrete │ │ │ │ │ │ ├── CMAnyAttributePropertyInfo.java │ │ │ │ │ │ ├── CMAnyElementPropertyInfo.java │ │ │ │ │ │ ├── CMAttributePropertyInfo.java │ │ │ │ │ │ ├── CMBuiltinLeafInfo.java │ │ │ │ │ │ ├── CMClassInfo.java │ │ │ │ │ │ ├── CMClassRef.java │ │ │ │ │ │ ├── CMCustomization.java │ │ │ │ │ │ ├── CMCustomizations.java │ │ │ │ │ │ ├── CMElement.java │ │ │ │ │ │ ├── CMElementInfo.java │ │ │ │ │ │ ├── CMElementPropertyInfo.java │ │ │ │ │ │ ├── CMElementRefPropertyInfo.java │ │ │ │ │ │ ├── CMElementRefsPropertyInfo.java │ │ │ │ │ │ ├── CMElementTypeInfo.java │ │ │ │ │ │ ├── CMElementTypeRef.java │ │ │ │ │ │ ├── CMElementsPropertyInfo.java │ │ │ │ │ │ ├── CMEnumConstantInfo.java │ │ │ │ │ │ ├── CMEnumLeafInfo.java │ │ │ │ │ │ ├── CMID.java │ │ │ │ │ │ ├── CMIDREF.java │ │ │ │ │ │ ├── CMIDREFS.java │ │ │ │ │ │ ├── CMInfoFactory.java │ │ │ │ │ │ ├── CMList.java │ │ │ │ │ │ ├── CMModel.java │ │ │ │ │ │ ├── CMPackageInfo.java │ │ │ │ │ │ ├── CMPropertyInfo.java │ │ │ │ │ │ ├── CMSingleTypePropertyInfo.java │ │ │ │ │ │ ├── CMValuePropertyInfo.java │ │ │ │ │ │ ├── CMWildcardTypeInfo.java │ │ │ │ │ │ └── origin │ │ │ │ │ │ │ ├── BuiltinLeafInfoOrigin.java │ │ │ │ │ │ │ ├── CMAnyAttributePropertyInfoOrigin.java │ │ │ │ │ │ │ ├── CMBuiltinLeafInfoOrigin.java │ │ │ │ │ │ │ ├── CMClassElementInfoOrigin.java │ │ │ │ │ │ │ ├── CMClassInfoOrigin.java │ │ │ │ │ │ │ ├── CMElementInfoOrigin.java │ │ │ │ │ │ │ ├── CMElementOrigin.java │ │ │ │ │ │ │ ├── CMElementTypeRefOrigin.java │ │ │ │ │ │ │ ├── CMEnumConstantInfoOrigin.java │ │ │ │ │ │ │ ├── CMEnumElementInfoOrigin.java │ │ │ │ │ │ │ ├── CMEnumLeafInfoOrigin.java │ │ │ │ │ │ │ ├── CMModelInfoOrigin.java │ │ │ │ │ │ │ ├── CMPackageInfoOrigin.java │ │ │ │ │ │ │ ├── CMPropertyInfoOrigin.java │ │ │ │ │ │ │ ├── CMWildcardTypeInfoOrigin.java │ │ │ │ │ │ │ ├── ClassInfoOrigin.java │ │ │ │ │ │ │ ├── ElementInfoOrigin.java │ │ │ │ │ │ │ ├── ElementOrigin.java │ │ │ │ │ │ │ ├── EnumConstantOrigin.java │ │ │ │ │ │ │ ├── EnumLeafInfoOrigin.java │ │ │ │ │ │ │ ├── PropertyInfoOrigin.java │ │ │ │ │ │ │ ├── TypeInfoSetOrigin.java │ │ │ │ │ │ │ └── WildcardTypeInfoOrigin.java │ │ │ │ │ │ ├── origin │ │ │ │ │ │ ├── MBuiltinLeafInfoOrigin.java │ │ │ │ │ │ ├── MClassInfoOrigin.java │ │ │ │ │ │ ├── MClassRefOrigin.java │ │ │ │ │ │ ├── MElementInfoOrigin.java │ │ │ │ │ │ ├── MElementOrigin.java │ │ │ │ │ │ ├── MElementTypeRefOrigin.java │ │ │ │ │ │ ├── MEnumConstantInfoOrigin.java │ │ │ │ │ │ ├── MEnumLeafInfoOrigin.java │ │ │ │ │ │ ├── MModelInfoOrigin.java │ │ │ │ │ │ ├── MOriginated.java │ │ │ │ │ │ ├── MPackageInfoOrigin.java │ │ │ │ │ │ ├── MPropertyInfoOrigin.java │ │ │ │ │ │ └── MWildcardTypeInfoOrigin.java │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── DefaultPropertyInfoVisitor.java │ │ │ │ │ │ ├── DefaultTypeInfoVisitor.java │ │ │ │ │ │ ├── PackageInfoQNameAnalyzer.java │ │ │ │ │ │ ├── QNameCollectingPropertyInfoVisitor.java │ │ │ │ │ │ ├── QNameCollector.java │ │ │ │ │ │ └── XmlTypeUtils.java │ │ │ │ └── namespace │ │ │ │ │ └── util │ │ │ │ │ └── QNameUtils.java │ │ │ │ └── xmlschema │ │ │ │ └── XmlSchemaConstants.java │ │ └── resources │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb2_commons │ │ │ └── locator │ │ │ └── messages.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ ├── hisrc │ │ │ └── xml │ │ │ │ └── bind │ │ │ │ └── tests │ │ │ │ ├── DynamicSchemaTest.java │ │ │ │ ├── addelement │ │ │ │ └── AddElementTest.java │ │ │ │ ├── dogs │ │ │ │ ├── Dog.java │ │ │ │ ├── DogTest.java │ │ │ │ ├── DogType.java │ │ │ │ ├── Dogs.java │ │ │ │ └── ObjectFactory.java │ │ │ │ └── dynamicelementname │ │ │ │ └── DynamicElementNameTest.java │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ ├── lang │ │ │ └── tests │ │ │ │ ├── CopyStrategyTest.java │ │ │ │ ├── CyclicTests.java │ │ │ │ ├── DefaultCopyStrategyTest.java │ │ │ │ └── pojo │ │ │ │ └── CloneableNoClone.java │ │ │ └── xml │ │ │ ├── bind │ │ │ └── model │ │ │ │ └── util │ │ │ │ └── tests │ │ │ │ ├── XmlTypeUtilsTest.java │ │ │ │ ├── alpha │ │ │ │ ├── A1.java │ │ │ │ ├── A2.java │ │ │ │ ├── A3.java │ │ │ │ ├── A4.java │ │ │ │ ├── A5.java │ │ │ │ ├── A6.java │ │ │ │ ├── A7.java │ │ │ │ ├── A8.java │ │ │ │ └── A9.java │ │ │ │ ├── beta │ │ │ │ ├── A1.java │ │ │ │ ├── A2.java │ │ │ │ ├── A3.java │ │ │ │ ├── A4.java │ │ │ │ ├── A5.java │ │ │ │ ├── A6.java │ │ │ │ ├── A7.java │ │ │ │ ├── A8.java │ │ │ │ ├── A9.java │ │ │ │ └── package-info.java │ │ │ │ ├── delta │ │ │ │ ├── A1.java │ │ │ │ ├── A2.java │ │ │ │ ├── A3.java │ │ │ │ ├── A4.java │ │ │ │ ├── A5.java │ │ │ │ ├── A6.java │ │ │ │ ├── A7.java │ │ │ │ ├── A8.java │ │ │ │ ├── A9.java │ │ │ │ └── package-info.java │ │ │ │ └── gamma │ │ │ │ ├── A1.java │ │ │ │ ├── A2.java │ │ │ │ ├── A3.java │ │ │ │ ├── A4.java │ │ │ │ ├── A5.java │ │ │ │ ├── A6.java │ │ │ │ ├── A7.java │ │ │ │ ├── A8.java │ │ │ │ ├── A9.java │ │ │ │ └── package-info.java │ │ │ └── namespace │ │ │ └── util │ │ │ └── tests │ │ │ └── QNameUtilsTest.java │ │ └── resources │ │ └── org │ │ ├── hisrc │ │ └── xml │ │ │ └── bind │ │ │ └── tests │ │ │ ├── addelement │ │ │ └── element.xml │ │ │ └── dogs │ │ │ └── dogs.xml │ │ └── jvnet │ │ └── jaxb │ │ └── lang │ │ └── tests │ │ └── Test[0].xml ├── jaxb-plugins-shaded │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── plugin │ │ │ └── Dummy.java │ │ └── resources │ │ └── .placeholder ├── jaxb-plugins-testing │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ ├── lang │ │ │ └── ExtendedJAXBEqualsStrategy.java │ │ │ └── test │ │ │ └── AbstractSamplesTest.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── test │ │ │ └── tests │ │ │ └── TrivialSamplesTest.java │ │ └── samples │ │ ├── 1.xml │ │ └── 2.xml ├── jaxb-plugins-tools │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ ├── hisrc │ │ │ └── xml │ │ │ │ └── xsom │ │ │ │ ├── DefaultFunctionImpl.java │ │ │ │ ├── FindXSElementDeclVisitor.java │ │ │ │ ├── SchemaComponentAware.java │ │ │ │ └── XSFunctionApplier.java │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ ├── codemodel │ │ │ ├── DefaultJCMTypeVisitor.java │ │ │ ├── JCMArrayClass.java │ │ │ ├── JCMClass.java │ │ │ ├── JCMNullType.java │ │ │ ├── JCMPrimitiveType.java │ │ │ ├── JCMType.java │ │ │ ├── JCMTypeFactory.java │ │ │ ├── JCMTypeVar.java │ │ │ ├── JCMTypeVisitor.java │ │ │ ├── JCMTypeWildcard.java │ │ │ └── JConditionable.java │ │ │ ├── plugin │ │ │ ├── AbstractParameterizablePlugin.java │ │ │ └── AbstractPlugin.java │ │ │ ├── reflection │ │ │ └── util │ │ │ │ ├── Accessor.java │ │ │ │ └── FieldAccessor.java │ │ │ ├── strategy │ │ │ ├── ClassOutlineProcessor.java │ │ │ ├── FieldOutlineProcessor.java │ │ │ ├── OutlineProcessor.java │ │ │ ├── PackageOutlineProcessor.java │ │ │ └── impl │ │ │ │ └── DefaultOutlineProcessor.java │ │ │ ├── util │ │ │ ├── ClassUtils.java │ │ │ ├── CodeModelUtils.java │ │ │ ├── CustomizationUtils.java │ │ │ ├── FieldAccessorFactory.java │ │ │ ├── FieldAccessorUtils.java │ │ │ ├── FieldUtils.java │ │ │ ├── GeneratorContextUtils.java │ │ │ ├── JClassUtils.java │ │ │ ├── OutlineUtils.java │ │ │ └── PropertyFieldAccessorFactory.java │ │ │ └── xjc │ │ │ ├── generator │ │ │ ├── MClassOutlineGenerator.java │ │ │ ├── MElementOutlineGenerator.java │ │ │ ├── MEnumConstantOutlineGenerator.java │ │ │ ├── MEnumOutlineGenerator.java │ │ │ ├── MModelOutlineGenerator.java │ │ │ ├── MObjectFactoryOutlineGenerator.java │ │ │ ├── MPackageOutlineGenerator.java │ │ │ ├── MPropertyOutlineGenerator.java │ │ │ ├── artificial │ │ │ │ └── WrapperPropertyOutlineGenerator.java │ │ │ └── concrete │ │ │ │ ├── CMClassOutlineGenerator.java │ │ │ │ ├── CMElementOutlineGenerator.java │ │ │ │ ├── CMEnumConstantOutlineGenerator.java │ │ │ │ ├── CMEnumOutlineGenerator.java │ │ │ │ ├── CMModelOutlineGenerator.java │ │ │ │ ├── CMPackageOutlineGenerator.java │ │ │ │ ├── CMPropertyOutlineGenerator.java │ │ │ │ ├── ClassOutlineGeneratorFactory.java │ │ │ │ ├── ElementOutlineGeneratorFactory.java │ │ │ │ ├── EnumConstantOutlineGeneratorFactory.java │ │ │ │ ├── EnumOutlineGeneratorFactory.java │ │ │ │ ├── ModelOutlineGeneratorFactory.java │ │ │ │ ├── OutlineGeneratorFactory.java │ │ │ │ ├── PackageOutlineGeneratorFactory.java │ │ │ │ └── PropertyOutlineGeneratorFactory.java │ │ │ ├── model │ │ │ └── concrete │ │ │ │ ├── XJCCMInfoFactory.java │ │ │ │ └── origin │ │ │ │ ├── DefaultPropertyInfoOrigin.java │ │ │ │ ├── DummyPropertyInfoOrigin.java │ │ │ │ ├── PackageInfoOrigin.java │ │ │ │ ├── XJCCMClassInfoOrigin.java │ │ │ │ ├── XJCCMClassRefOrigin.java │ │ │ │ ├── XJCCMElementInfoOrigin.java │ │ │ │ ├── XJCCMElementOrigin.java │ │ │ │ ├── XJCCMElementTypeRefOrigin.java │ │ │ │ ├── XJCCMEnumConstantInfoOrigin.java │ │ │ │ ├── XJCCMEnumLeafInfoOrigin.java │ │ │ │ ├── XJCCMModelInfoOrigin.java │ │ │ │ ├── XJCCMPackageInfoOrigin.java │ │ │ │ └── XJCCMPropertyInfoOrigin.java │ │ │ └── outline │ │ │ ├── FieldAccessorEx.java │ │ │ ├── MChildOutline.java │ │ │ ├── MClassOutline.java │ │ │ ├── MElementOutline.java │ │ │ ├── MEnumConstantOutline.java │ │ │ ├── MEnumOutline.java │ │ │ ├── MModelOutline.java │ │ │ ├── MObjectFactoryOutline.java │ │ │ ├── MPackageOutline.java │ │ │ ├── MPackagedOutline.java │ │ │ ├── MPropertyAccessor.java │ │ │ ├── MPropertyAccessorFactory.java │ │ │ ├── MPropertyOutline.java │ │ │ ├── artificial │ │ │ ├── AbstractPropertyAccessorFactory.java │ │ │ ├── AbstractPropertyOutline.java │ │ │ ├── AbstractSinglePropertyOutline.java │ │ │ ├── AnnotatePropertyVisitor.java │ │ │ ├── AnyAttributePropertyOutline.java │ │ │ ├── ConstantPropertyOutline.java │ │ │ ├── PropertyTypeVisitor.java │ │ │ └── SinglePropertyOutline.java │ │ │ └── concrete │ │ │ ├── CMClassOutline.java │ │ │ ├── CMElementOutline.java │ │ │ ├── CMEnumConstantOutline.java │ │ │ ├── CMEnumOutline.java │ │ │ ├── CMModelOutline.java │ │ │ ├── CMObjectFactoryOutline.java │ │ │ ├── CMPackageOutline.java │ │ │ ├── CMPropertyAccessor.java │ │ │ ├── CMPropertyAccessorFactory.java │ │ │ └── CMPropertyOutline.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ ├── reflection │ │ │ └── util │ │ │ │ └── test │ │ │ │ ├── FieldAccessorTest.java │ │ │ │ └── URIInternalTest.java │ │ │ ├── util │ │ │ └── tests │ │ │ │ └── JClassUtilsTest.java │ │ │ └── xjc │ │ │ └── model │ │ │ └── concrete │ │ │ └── tests │ │ │ └── alpha │ │ │ ├── AlphaMInfoFactoryTest.java │ │ │ ├── KnownReferencedType.java │ │ │ └── package-info.java │ │ └── resources │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── xjc │ │ └── model │ │ └── concrete │ │ └── tests │ │ └── alpha │ │ ├── binding.xjb │ │ └── schema.xsd ├── jaxb-plugins │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── plugin │ │ │ │ ├── ComposedIgnoring.java │ │ │ │ ├── Customizations.java │ │ │ │ ├── CustomizedIgnoring.java │ │ │ │ ├── Ignoring.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ ├── autoinheritance │ │ │ │ └── AutoInheritancePlugin.java │ │ │ │ ├── booleangetter │ │ │ │ └── BooleanGetter.java │ │ │ │ ├── camelcase │ │ │ │ ├── CamelCaseNameConverter.java │ │ │ │ └── CamelCasePlugin.java │ │ │ │ ├── codegenerator │ │ │ │ ├── AbstractCodeGenerationImplementor.java │ │ │ │ ├── AbstractCodeGenerator.java │ │ │ │ ├── AbstractCodeGeneratorPlugin.java │ │ │ │ ├── Arguments.java │ │ │ │ ├── ArrayCodeGenerator.java │ │ │ │ ├── BooleanCodeGenerator.java │ │ │ │ ├── ByteCodeGenerator.java │ │ │ │ ├── CharCodeGenerator.java │ │ │ │ ├── CodeGenerationAbstraction.java │ │ │ │ ├── CodeGenerationImplementor.java │ │ │ │ ├── CodeGenerator.java │ │ │ │ ├── DoubleCodeGenerator.java │ │ │ │ ├── FloatCodeGenerator.java │ │ │ │ ├── IntCodeGenerator.java │ │ │ │ ├── JAXBElementCodeGenerator.java │ │ │ │ ├── ListCodeGenerator.java │ │ │ │ ├── LongCodeGenerator.java │ │ │ │ ├── ObjectCodeGenerator.java │ │ │ │ └── ShortCodeGenerator.java │ │ │ │ ├── commons_lang │ │ │ │ └── XjcCommonsLangPlugin.java │ │ │ │ ├── copyable │ │ │ │ ├── CopyablePlugin.java │ │ │ │ ├── Customizations.java │ │ │ │ └── LegacyCustomizations.java │ │ │ │ ├── customizations │ │ │ │ ├── Customizations.java │ │ │ │ ├── CustomizationsPlugin.java │ │ │ │ └── LegacyCustomizations.java │ │ │ │ ├── defaultvalueplugin │ │ │ │ └── DefaultValuePlugin.java │ │ │ │ ├── elementwrapper │ │ │ │ ├── Candidate.java │ │ │ │ ├── Customizations.java │ │ │ │ ├── Instantiation.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ ├── OldElementWrapperPlugin.java │ │ │ │ └── XmlElementWrapperPlugin.java │ │ │ │ ├── enumvalue │ │ │ │ ├── Customizations.java │ │ │ │ ├── EnumValuePlugin.java │ │ │ │ └── LegacyCustomizations.java │ │ │ │ ├── equals │ │ │ │ ├── Customizations.java │ │ │ │ ├── EqualsPlugin.java │ │ │ │ └── LegacyCustomizations.java │ │ │ │ ├── fixjaxb1058 │ │ │ │ └── FixJAXB1058Plugin.java │ │ │ │ ├── fluent_api │ │ │ │ ├── Customizations.java │ │ │ │ ├── FluentApiPlugin.java │ │ │ │ ├── FluentMethodInfo.java │ │ │ │ ├── FluentMethodType.java │ │ │ │ └── LegacyCustomizations.java │ │ │ │ ├── hashcode │ │ │ │ ├── Customizations.java │ │ │ │ ├── HashCodePlugin.java │ │ │ │ └── LegacyCustomizations.java │ │ │ │ ├── inheritance │ │ │ │ ├── Customizations.java │ │ │ │ ├── ExtendsClass.java │ │ │ │ ├── ImplementsInterface.java │ │ │ │ ├── InheritancePlugin.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ ├── LegacyExtendsClass.java │ │ │ │ ├── LegacyImplementsInterface.java │ │ │ │ ├── LegacyObjectFactoryCustomization.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ ├── ObjectFactoryCustomization.java │ │ │ │ └── util │ │ │ │ │ ├── JavaTypeParser.java │ │ │ │ │ └── TypeToJTypeConvertingVisitor.java │ │ │ │ ├── jaxbindex │ │ │ │ └── JaxbIndexPlugin.java │ │ │ │ ├── map_init │ │ │ │ ├── Customizations.java │ │ │ │ ├── InitClass.java │ │ │ │ ├── MapInitPlugin.java │ │ │ │ ├── ObjectFactory.java │ │ │ │ └── ObjectFactoryCustomization.java │ │ │ │ ├── mergeable │ │ │ │ ├── Customizations.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ └── MergeablePlugin.java │ │ │ │ ├── model │ │ │ │ └── AbstractModelPlugin.java │ │ │ │ ├── namespace_prefix │ │ │ │ ├── Customizations.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ └── NamespacePrefixPlugin.java │ │ │ │ ├── parentpointer │ │ │ │ └── ParentPointerPlugin.java │ │ │ │ ├── propertylistenerinjector │ │ │ │ ├── Customizations.java │ │ │ │ └── PropertyListenerInjectorPlugin.java │ │ │ │ ├── setters │ │ │ │ ├── Customizations.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ └── SettersPlugin.java │ │ │ │ ├── simpleequals │ │ │ │ ├── EqualsArguments.java │ │ │ │ ├── EqualsCodeGenerationImplementor.java │ │ │ │ ├── EqualsCodeGenerator.java │ │ │ │ └── SimpleEqualsPlugin.java │ │ │ │ ├── simplehashcode │ │ │ │ ├── HashCodeArguments.java │ │ │ │ ├── HashCodeCodeGenerationImplementor.java │ │ │ │ ├── HashCodeCodeGenerator.java │ │ │ │ └── SimpleHashCodePlugin.java │ │ │ │ ├── simpletostring │ │ │ │ └── SimpleToStringPlugin.java │ │ │ │ ├── simplify │ │ │ │ ├── Customizations.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ └── SimplifyPlugin.java │ │ │ │ ├── tostring │ │ │ │ ├── Customizations.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ └── ToStringPlugin.java │ │ │ │ ├── util │ │ │ │ ├── ArrayUtils.java │ │ │ │ ├── FieldOutlineUtils.java │ │ │ │ ├── Predicate.java │ │ │ │ └── StrategyClassUtils.java │ │ │ │ ├── value_constructor │ │ │ │ ├── Customizations.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ └── ValueConstructorPlugin.java │ │ │ │ └── wildcard │ │ │ │ ├── Customizations.java │ │ │ │ ├── LegacyCustomizations.java │ │ │ │ └── WildcardPlugin.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.sun.tools.xjc.Plugin │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── plugin │ │ │ ├── copyable │ │ │ └── tests │ │ │ │ └── RunCopyablePlugin.java │ │ │ ├── equals │ │ │ └── tests │ │ │ │ └── RunEqualsPlugin.java │ │ │ ├── inheritance │ │ │ └── tests │ │ │ │ ├── JavaParserTest.java │ │ │ │ └── JavaTypeParserTest.java │ │ │ ├── mergeable │ │ │ └── tests │ │ │ │ └── RunMergeablePlugin.java │ │ │ └── tostring │ │ │ └── tests │ │ │ └── RunToStringPlugin.java │ │ └── resources │ │ └── schema.xsd ├── pom.xml ├── samples │ ├── basic │ │ ├── pom.xml │ │ ├── project-build.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── assembly │ │ │ │ └── src.xml │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ └── resources │ │ │ │ └── schema.xsd │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── one │ │ │ │ ├── CopyableTest.java │ │ │ │ ├── EqualsTest.java │ │ │ │ └── ToStringTest.java │ │ │ ├── resources │ │ │ └── EMPTY.git │ │ │ └── samples │ │ │ └── 1.xml │ ├── cxf │ │ ├── pom.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── bindings.xjb │ │ │ ├── main.wsdl │ │ │ ├── schema.xsd │ │ │ └── wsdl-bindings.xjb │ ├── po-simple │ │ ├── pom.xml │ │ ├── project-build.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ └── resources │ │ │ │ ├── bindings.xjb │ │ │ │ └── purchaseorder.xsd │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── posimple │ │ │ │ └── EqualsTest.java │ │ │ ├── resources │ │ │ └── EMPTY.git │ │ │ └── samples │ │ │ └── po.xml │ ├── po │ │ ├── pom.xml │ │ ├── project-build.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── .placeholder │ │ │ └── resources │ │ │ │ ├── bindings.xjb │ │ │ │ └── purchaseorder.xsd │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── po │ │ │ │ ├── CopyableTest.java │ │ │ │ ├── EqualsTest.java │ │ │ │ └── ToStringTest.java │ │ │ ├── resources │ │ │ └── EMPTY.git │ │ │ └── samples │ │ │ └── po.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── assembly │ │ ├── ant-src.xml │ │ └── maven-src.xml └── tests │ ├── JAXB-1058 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── schema.xsd │ │ └── test │ │ └── java │ │ └── org │ │ └── jvnet │ │ └── jaxb2_commons │ │ └── tests │ │ └── JAXB_1058 │ │ └── ExecuteJAXB1058.java │ ├── booleangetter │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Person.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── booleangetter │ │ │ └── PersonTest.java │ │ └── resources │ │ └── log4j.properties │ ├── camelcase │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Person.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── camelcase │ │ │ ├── AddressTest.java │ │ │ └── PersonTest.java │ │ └── resources │ │ └── log4j.properties │ ├── commons_lang │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Person.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb2_commons │ │ │ └── tests │ │ │ └── commons_lang │ │ │ ├── AddressTest.java │ │ │ └── PersonTest.java │ │ └── resources │ │ └── log4j.properties │ ├── commons_lang_custom │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Person.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb2_commons │ │ │ └── tests │ │ │ └── commons_lang │ │ │ ├── AddressTest.java │ │ │ └── PersonTest.java │ │ └── resources │ │ └── log4j.properties │ ├── copyable │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Example.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── copyable │ │ │ ├── BaseTest.java │ │ │ ├── FooElementTest.java │ │ │ └── PrimitivesAndUnboxedPrimitivesTest.java │ │ └── resources │ │ └── log4j.properties │ ├── defaultvalue │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Person.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb2_commons │ │ │ └── tests │ │ │ └── defaultvalue │ │ │ ├── AddressTest.java │ │ │ ├── MathTypesTest.java │ │ │ └── PersonTest.java │ │ └── resources │ │ └── log4j.properties │ ├── elementwrapper │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── example.xsd │ ├── enumtostring │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── enumtostring │ │ │ │ └── MyEnumToStringStrategy.java │ │ └── resources │ │ │ └── sample.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── enumtostring │ │ │ └── ConsoleTest.java │ │ └── resources │ │ └── log4j.properties │ ├── episodes │ ├── a │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── a.xsd │ │ │ │ └── binding.xjb │ │ │ └── test │ │ │ └── samples │ │ │ └── 1.xml │ ├── b │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── a.xsd │ │ │ │ ├── b.xsd │ │ │ │ └── binding.xjb │ │ │ └── test │ │ │ └── samples │ │ │ └── 1.xml │ └── pom.xml │ ├── fluentapi │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Example.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── fluentapi │ │ │ ├── BaseTest.java │ │ │ └── PrimitivesAndUnboxedPrimitivesTest.java │ │ └── resources │ │ └── log4j.properties │ ├── ignoring │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── schema.xsd │ ├── issues-legacy-ns │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── issues │ │ │ │ ├── IssueGH70Interface.java │ │ │ │ ├── IssueJIIB14BaseClass.java │ │ │ │ ├── IssueJIIB14BaseInterfaceFour.java │ │ │ │ ├── IssueJIIB14BaseInterfaceOne.java │ │ │ │ ├── IssueJIIB14BaseInterfaceThree.java │ │ │ │ ├── IssueJIIB14BaseInterfaceTwo.java │ │ │ │ ├── IssueJIIB42EqualsStrategy.java │ │ │ │ ├── IssueJIIB48Interface.java │ │ │ │ └── IssueJIIB53ABaseClass.java │ │ └── resources │ │ │ ├── binding.xjb │ │ │ ├── org │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── issues │ │ │ │ └── IssueJIIB38Type.xml │ │ │ └── schema.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── issues │ │ │ ├── CopyableTest.java │ │ │ ├── GH22Test.java │ │ │ ├── GH26Test.java │ │ │ ├── GH31Test.java │ │ │ ├── GH37Test.java │ │ │ ├── JIIB10Test.java │ │ │ ├── JIIB14Test.java │ │ │ ├── JIIB20Test.java │ │ │ ├── JIIB35Test.java │ │ │ ├── JIIB36Test.java │ │ │ ├── JIIB38Test.java │ │ │ ├── JIIB8Test.java │ │ │ ├── RunIssuesPlugin.java │ │ │ └── RunPlugins.java │ │ └── samples │ │ └── issue16[0].xml │ ├── issues │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── issues │ │ │ │ ├── IssueGH70Interface.java │ │ │ │ ├── IssueJIIB14BaseClass.java │ │ │ │ ├── IssueJIIB14BaseInterfaceFour.java │ │ │ │ ├── IssueJIIB14BaseInterfaceOne.java │ │ │ │ ├── IssueJIIB14BaseInterfaceThree.java │ │ │ │ ├── IssueJIIB14BaseInterfaceTwo.java │ │ │ │ ├── IssueJIIB42EqualsStrategy.java │ │ │ │ ├── IssueJIIB48Interface.java │ │ │ │ └── IssueJIIB53ABaseClass.java │ │ └── resources │ │ │ ├── binding.xjb │ │ │ ├── org │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── tests │ │ │ │ └── issues │ │ │ │ └── IssueJIIB38Type.xml │ │ │ └── schema.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── issues │ │ │ ├── CopyableTest.java │ │ │ ├── GH22Test.java │ │ │ ├── GH26Test.java │ │ │ ├── GH31Test.java │ │ │ ├── GH37Test.java │ │ │ ├── JIIB10Test.java │ │ │ ├── JIIB14Test.java │ │ │ ├── JIIB20Test.java │ │ │ ├── JIIB35Test.java │ │ │ ├── JIIB36Test.java │ │ │ ├── JIIB38Test.java │ │ │ ├── JIIB8Test.java │ │ │ ├── RunIssuesPlugin.java │ │ │ └── RunPlugins.java │ │ └── samples │ │ └── issue16[0].xml │ ├── map_init │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── example-definedMapClass.xsd │ │ │ └── example-undefinedMapClass.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── mapinit │ │ │ ├── EmployeeDefinedTest.java │ │ │ └── EmployeeUndefinedTest.java │ │ └── resources │ │ └── log4j.properties │ ├── namespace │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── a.xsd │ │ │ ├── b.xsd │ │ │ ├── binding.xjb │ │ │ └── c.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── namespace │ │ │ ├── ATest.java │ │ │ ├── BTest.java │ │ │ ├── CTest.java │ │ │ └── RunNamespacePlugin.java │ │ └── resources │ │ └── log4j.properties │ ├── one │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── schema.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb2_commons │ │ │ └── tests │ │ │ └── one │ │ │ ├── CopyableTest.java │ │ │ ├── EqualsTest.java │ │ │ ├── HashCodeTest.java │ │ │ ├── RunOnePlugin.java │ │ │ └── ToStringTest.java │ │ ├── resources │ │ └── log4j.properties │ │ └── samples │ │ ├── 1.xml │ │ └── 2.xml │ ├── parentpointer │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ └── Person.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── parentpointer │ │ │ └── AddressTest.java │ │ └── resources │ │ └── log4j.properties │ ├── po-2.3 │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── purchaseorder.xsd │ ├── po │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── purchaseorder.xsd │ ├── pom.xml │ ├── propertylistenerinjector-vetoable │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── Person.xsd │ │ │ └── binding.xjb │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── propertylistenerinjector │ │ │ └── AddressTest.java │ │ └── resources │ │ └── log4j.properties │ ├── propertylistenerinjector │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── Person.xsd │ │ │ └── binding.xjb │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── tests │ │ │ └── propertylistenerinjector │ │ │ └── AddressTest.java │ │ └── resources │ │ └── log4j.properties │ ├── qa-simple │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── schema.xsd │ │ └── test │ │ └── resources │ │ └── log4j.properties │ ├── qa-strategic │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── schema.xsd │ │ └── test │ │ └── resources │ │ └── log4j.properties │ ├── simple-hashCode-equals-01 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── cases.xsd │ │ │ ├── customer.xjb │ │ │ ├── customer.xsd │ │ │ ├── main.xjb │ │ │ └── main.xsd │ │ └── test │ │ └── java │ │ └── org │ │ └── jvnet │ │ └── jaxb2_commons │ │ └── tests │ │ └── simple_hashcode_equals_01 │ │ ├── cases │ │ ├── PrimitivesTest.java │ │ ├── RunPluginsForCases.java │ │ └── UnboxedPrimitivesTest.java │ │ ├── customer │ │ ├── Customer2.java │ │ ├── CustomerTest.java │ │ └── RunPluginsForCustomer.java │ │ └── main │ │ └── RunPluginsForMain.java │ ├── simplify-01 │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── plugin │ │ │ │ └── simplify │ │ │ │ └── tests01 │ │ │ │ ├── BaseElementRef.java │ │ │ │ └── DateAdapter.java │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── schema.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── plugin │ │ │ └── simplify │ │ │ └── tests01 │ │ │ ├── Gh18Test.java │ │ │ ├── Gh1Test.java │ │ │ ├── Gh2Test.java │ │ │ ├── Gh4Test.java │ │ │ ├── Gh5Test.java │ │ │ ├── Gh6Test.java │ │ │ └── RunSimplifyPlugin.java │ │ └── resources │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── plugin │ │ └── simplify │ │ └── tests01 │ │ ├── simplifyElementsPropertyAsElementProperty.xml │ │ ├── simplifyReferencesPropertyAsElementProperty.xml │ │ └── simplifyReferencesPropertyAsReferenceProperty.xml │ ├── simplify-02 │ ├── pom.xml │ └── src │ │ ├── main │ │ └── resources │ │ │ ├── bindings.xjb │ │ │ ├── schema.xsd │ │ │ ├── simpledc20021212.xsd │ │ │ └── xml.xsd │ │ └── test │ │ └── java │ │ └── org │ │ └── jvnet │ │ └── jaxb2_commons │ │ └── plugin │ │ └── simplify │ │ └── tests02 │ │ └── RunSimplifyPlugin.java │ ├── simplify-03 │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── plugin │ │ │ │ └── simplify │ │ │ │ └── tests03 │ │ │ │ ├── BaseElementRef.java │ │ │ │ └── DateAdapter.java │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── schema.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── plugin │ │ │ └── simplify │ │ │ └── tests03 │ │ │ ├── Gh18Test.java │ │ │ ├── Gh1Test.java │ │ │ ├── Gh2Test.java │ │ │ ├── Gh4Test.java │ │ │ ├── Gh5Test.java │ │ │ ├── Gh6Test.java │ │ │ └── RunSimplifyPlugin.java │ │ └── resources │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── plugin │ │ └── simplify │ │ └── tests03 │ │ ├── simplifyElementsPropertyAsElementProperty.xml │ │ ├── simplifyReferencesPropertyAsElementProperty.xml │ │ └── simplifyReferencesPropertyAsReferenceProperty.xml │ ├── superclass │ ├── a │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── a.xsd │ │ │ └── binding.xjb │ ├── b │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── binding.xjb │ │ │ │ └── schema.xsd │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── test │ │ │ │ └── superclass │ │ │ │ └── b │ │ │ │ └── tests │ │ │ │ ├── CopyToTest.java │ │ │ │ └── RunPlugins.java │ │ │ └── samples │ │ │ └── 1.xml │ └── pom.xml │ ├── wildcard │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── binding.xjb │ │ └── schema.xsd │ └── zj │ ├── pom.xml │ └── src │ ├── main │ └── resources │ │ └── ObisData.xsd │ └── test │ ├── java │ └── org │ │ └── jvnet │ │ └── jaxb2_commons │ │ └── tests │ │ └── zj │ │ └── EqualsTest.java │ ├── resources │ └── log4j.properties │ └── samples │ └── MediaCatalogue.xml ├── jaxb-tools-bom-parent ├── jaxb-tools-bom │ └── pom.xml └── pom.xml ├── jaxb-tools-docs ├── pom.xml └── src │ └── main │ └── docs │ └── jaxb-tools-docs │ ├── asciidoctor-original.css │ ├── iconic.css │ ├── images │ ├── jakarta-logo-800px.png │ └── jaxb-tools-user-guide-cover-page.png │ ├── jaxb-tools-user-guide-content.adoc │ ├── jaxb-tools-user-guide-document.adoc │ ├── jaxb-tools-user-guide.adoc │ └── rocket-panda.css ├── maven-plugin ├── dist │ ├── .gitignore │ └── pom.xml ├── plugin-core │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── maven │ │ │ │ ├── AbstractXJCMojo.java │ │ │ │ ├── DependencyResource.java │ │ │ │ ├── DependencyResourceResolver.java │ │ │ │ ├── IOptionsFactory.java │ │ │ │ ├── OptionsConfiguration.java │ │ │ │ ├── ParentFirstClassLoader.java │ │ │ │ ├── RawXJCMojo.java │ │ │ │ ├── ResourceEntry.java │ │ │ │ ├── XJCVersion.java │ │ │ │ ├── net │ │ │ │ ├── AbstractHTTPURILastModifiedResolver.java │ │ │ │ ├── AbstractSchemeAwareURILastModifiedResolver.java │ │ │ │ ├── CompositeURILastModifiedResolver.java │ │ │ │ ├── FileURILastModifiedResolver.java │ │ │ │ ├── HttpURILastModifiedResolver.java │ │ │ │ ├── HttpsURILastModifiedResolver.java │ │ │ │ ├── JarURILastModifiedResolver.java │ │ │ │ ├── SchemeAwareURILastModifiedResolver.java │ │ │ │ └── URILastModifiedResolver.java │ │ │ │ ├── plugin │ │ │ │ └── logging │ │ │ │ │ └── NullLog.java │ │ │ │ ├── resolver │ │ │ │ └── tools │ │ │ │ │ ├── ClasspathCatalogResolver.java │ │ │ │ │ ├── LoggingCatalogResolver.java │ │ │ │ │ ├── MavenCatalogResolver.java │ │ │ │ │ ├── ReResolvingEntityResolverWrapper.java │ │ │ │ │ ├── ReResolvingInputSourceWrapper.java │ │ │ │ │ └── RelativeCatalog.java │ │ │ │ └── util │ │ │ │ ├── ArtifactUtils.java │ │ │ │ ├── CollectionUtils.java │ │ │ │ ├── IOUtils.java │ │ │ │ ├── JarScanner.java │ │ │ │ ├── LocaleUtils.java │ │ │ │ └── StringUtils.java │ │ └── resources │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── addIfExistsToEpisodeSchemaBindings.xslt │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ ├── RawXJCMojoTest.java │ │ │ ├── net │ │ │ └── tests │ │ │ │ └── URILastModifiedResolverTest.java │ │ │ ├── resolver │ │ │ └── tools │ │ │ │ └── tests │ │ │ │ └── MavenCatalogResolverTest.java │ │ │ ├── tests │ │ │ ├── AddIfExistsToEpisodeSchemaBindingsTest.java │ │ │ └── DependencyResourceTest.java │ │ │ └── util │ │ │ ├── IOUtilsTests.java │ │ │ └── tests │ │ │ └── CollectionsUtilsTests.java │ │ └── resources │ │ └── org │ │ └── jvnet │ │ └── jaxb │ │ └── maven │ │ └── resolver │ │ └── tools │ │ └── tests │ │ ├── a │ │ ├── catalog.cat │ │ └── w3c │ │ │ └── 1999 │ │ │ └── xlink.xsd │ │ └── b │ │ ├── catalog.cat │ │ └── w3c │ │ └── 2005 │ │ └── atom-author-link.xsd ├── plugin │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── maven │ │ │ │ ├── LoggingCodeWriter.java │ │ │ │ ├── LoggingErrorReceiver.java │ │ │ │ ├── OptionsFactory.java │ │ │ │ ├── XJCMojo.java │ │ │ │ └── XJCTestMojo.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── m2e │ │ │ └── lifecycle-mapping-metadata.xml │ │ ├── site │ │ └── site.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ ├── JAXBGenerateTest.java │ │ │ └── JAXBGenerateTestSuite.java │ │ └── resources │ │ ├── purchaseorder.xsd │ │ └── test-pom.xml ├── pom.xml ├── samples │ ├── catalog │ │ ├── pom.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── assembly │ │ │ └── maven-src.xml │ │ │ └── resources │ │ │ ├── catalog.cat │ │ │ ├── schema_a.xsd │ │ │ └── schema_b.xsd │ ├── dtd │ │ ├── pom.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── assembly │ │ │ └── maven-src.xml │ │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── hibernate-mapping.dtd │ ├── episode │ │ ├── a │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── a.xsd │ │ ├── b │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── b.xsd │ │ │ │ └── catalog.cat │ │ ├── c │ │ │ ├── project-pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── c.xsd │ │ ├── pom.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ └── main │ │ │ └── assembly │ │ │ └── maven-src.xml │ ├── jaxbplugins │ │ ├── pom.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── assembly │ │ │ └── maven-src.xml │ │ │ └── resources │ │ │ └── purchaseorder.xsd │ ├── po │ │ ├── pom.xml │ │ ├── project-pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── assembly │ │ │ └── maven-src.xml │ │ │ └── resources │ │ │ └── purchaseorder.xsd │ └── pom.xml ├── src │ └── site │ │ └── site.xml ├── testing │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── maven │ │ │ │ └── test │ │ │ │ ├── RunXJCMojo.java │ │ │ │ └── plugin │ │ │ │ └── foo │ │ │ │ └── FooPlugin.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── com.sun.tools.xjc.Plugin │ │ ├── site │ │ └── site.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── test │ │ │ └── plugin │ │ │ └── foo │ │ │ └── tests │ │ │ └── RunFooPlugin.java │ │ └── resources │ │ ├── log4j.properties │ │ └── purchaseorder.xsd ├── tests │ ├── JAXB-1044 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── a.xjb │ │ │ │ ├── a.xsd │ │ │ │ ├── b.xsd │ │ │ │ └── catalog.cat │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── tests │ │ │ └── JAXB_1044 │ │ │ └── RunJAXB_1044Mojo.java │ ├── MAVEN_JAXB2_PLUGIN-49 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── resources │ │ │ └── catalog.cat │ │ │ └── schema │ │ │ └── ogc │ │ │ └── wms │ │ │ └── 1.3.0 │ │ │ └── exceptions_1_3_0.xsd │ ├── MAVEN_JAXB2_PLUGIN-53 │ │ ├── a │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── a.xsd │ │ ├── b │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── resources │ │ │ │ │ ├── b.xsd │ │ │ │ │ └── catalog.cat │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── maven │ │ │ │ └── tests │ │ │ │ └── MAVEN_JAXB2_PLUGIN_53 │ │ │ │ └── b │ │ │ │ └── RunMAVEN_JAXB2_PLUGIN_53Mojo.java │ │ └── pom.xml │ ├── MAVEN_JAXB2_PLUGIN-69 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── simple.xsd │ ├── MAVEN_JAXB2_PLUGIN-70 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── bindings.xjb │ ├── MAVEN_JAXB2_PLUGIN-77 │ │ ├── common-types │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── project │ │ │ │ └── schemas │ │ │ │ ├── CommonTypes.xsd │ │ │ │ └── ISOCurrencyCodeType-V2008.xsd │ │ ├── pom.xml │ │ └── service │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ ├── jaxb │ │ │ │ └── catalog.cat │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── project │ │ │ │ └── schemas │ │ │ │ └── Service.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── tests │ │ │ └── MAVEN_JAXB2_PLUGIN_77 │ │ │ └── RunMAVEN_JAXB2_PLUGIN_77Mojo.java │ ├── MAVEN_JAXB2_PLUGIN-79 │ │ ├── a │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── a.xjb │ │ │ │ └── a.xsd │ │ ├── b │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── b.xsd │ │ │ │ └── catalog.cat │ │ └── pom.xml │ ├── MAVEN_JAXB2_PLUGIN-82 │ │ ├── a │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── a.xsd │ │ ├── b │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── b.xjb │ │ │ │ ├── b.xsd │ │ │ │ └── catalog.cat │ │ └── pom.xml │ ├── MAVEN_JAXB2_PLUGIN-86 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── a │ │ │ └── a.xsd │ │ │ └── b │ │ │ └── b.xsd │ ├── MAVEN_JAXB2_PLUGIN-87 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── purchaseorder.xsd │ ├── catalog-xml │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── catalog.xml │ │ │ │ ├── schema_a.xsd │ │ │ │ └── schema_b.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── tests │ │ │ └── catalog │ │ │ ├── RunCatalogMojo.java │ │ │ └── RunPlainCatalogMojo.java │ ├── catalog │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── catalog.cat │ │ │ │ ├── schema_a.xsd │ │ │ │ └── schema_b.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── tests │ │ │ └── catalog │ │ │ ├── RunCatalogMojo.java │ │ │ └── RunPlainCatalogMojo.java │ ├── episodes │ │ ├── a │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── a.xjb │ │ │ │ └── a.xsd │ │ ├── b │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── b.xsd │ │ │ │ └── catalog.cat │ │ ├── c │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── c.xsd │ │ ├── d │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── catalog.cat │ │ │ │ └── d.xsd │ │ ├── e │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── catalog.cat │ │ │ │ └── d.xsd │ │ └── pom.xml │ ├── full-build-1.7.bat │ ├── full-build-1.8.bat │ ├── full-build-9.bat │ ├── gh-issue-16 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── ab │ │ │ ├── a.xjb │ │ │ ├── a.xsd │ │ │ ├── b.xsd │ │ │ └── catalog.cat │ ├── gh-issue-19 │ │ ├── a │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── a │ │ │ │ └── a.xsd │ │ ├── b │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── b │ │ │ │ ├── b.cat │ │ │ │ └── b.xsd │ │ └── pom.xml │ ├── gh-issue-22 │ │ ├── a │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── a.xsd │ │ ├── b │ │ │ └── pom.xml │ │ └── pom.xml │ ├── gh-issue-23 │ │ ├── one-non-strict │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── one │ │ │ │ │ └── catalog.xml │ │ │ │ ├── one │ │ │ │ ├── a.xsd │ │ │ │ ├── b.xsd │ │ │ │ └── b1.xsd │ │ │ │ └── two │ │ │ │ └── p.xsd │ │ ├── pom.xml │ │ └── two-non-strict │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── two │ │ │ │ └── catalog.xml │ │ │ ├── one │ │ │ ├── a.xsd │ │ │ ├── b.xsd │ │ │ └── b1.xsd │ │ │ └── two │ │ │ └── p.xsd │ ├── gh-issue-58 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── purchaseorder.xsd │ ├── issues │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── jaxb │ │ │ │ │ └── maven │ │ │ │ │ └── tests │ │ │ │ │ └── issues │ │ │ │ │ └── common │ │ │ │ │ └── Generated.java │ │ │ └── resources │ │ │ │ ├── binding.xjb │ │ │ │ ├── depends.dep │ │ │ │ ├── depends.txt │ │ │ │ └── schema.xsd │ │ │ └── test │ │ │ └── resources │ │ │ └── log4j.properties │ ├── java-9 │ │ ├── install-10.bat │ │ ├── install-8.bat │ │ ├── install-9.bat │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── SimpleClass.xsd │ │ │ │ ├── SimpleClassWithOtherName.xsd │ │ │ │ └── SimpleClassWithPackage.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── java9 │ │ │ └── Java9Test.java │ ├── javadoc │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ └── schema.xsd │ │ │ └── test │ │ │ └── resources │ │ │ └── log4j.properties │ ├── jt-194 │ │ ├── main │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jvnet │ │ │ │ └── jaxb │ │ │ │ └── test │ │ │ │ └── JT194Test.java │ │ ├── pom.xml │ │ ├── xjb │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── purchaseorder.xjb │ │ └── xsd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ └── purchaseorder.xsd │ ├── jt-244 │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── bindings.xjb │ │ │ ├── catalog.xml │ │ │ └── schemas │ │ │ ├── a.xsd │ │ │ └── common │ │ │ └── b.xsd │ ├── jt-250 │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── example │ │ │ │ └── testxjc │ │ │ │ └── Main.java │ │ │ └── xsd │ │ │ ├── v1 │ │ │ └── purchaseorder.xsd │ │ │ └── v2 │ │ │ └── purchaseorder.xsd │ ├── jt-306 │ │ ├── common-model │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ ├── common.xjb │ │ │ │ └── common.xsd │ │ ├── helper-ws-model │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ ├── helper-catalog.xml │ │ │ │ ├── helper.xjb │ │ │ │ └── helper.xsd │ │ ├── import-ws-model │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ ├── import-catalog.xml │ │ │ │ ├── import.xjb │ │ │ │ └── import.xsd │ │ └── pom.xml │ ├── jt-40 │ │ ├── generate │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── jvnet │ │ │ │ │ │ └── jaxb │ │ │ │ │ │ └── main │ │ │ │ │ │ ├── AFail.java │ │ │ │ │ │ └── ASuccess.java │ │ │ │ └── resources │ │ │ │ │ └── b.xsd │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── jvnet │ │ │ │ │ └── jaxb │ │ │ │ │ └── test │ │ │ │ │ └── JT40Test.java │ │ │ │ └── resources │ │ │ │ └── purchaseorder.xsd │ │ ├── pom.xml │ │ └── test │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── test │ │ │ └── JT40Test.java │ ├── p_o-parentbom │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── binding.xjb │ │ │ └── purchaseorder.xsd │ ├── p_o │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── binding.xjb │ │ │ │ └── purchaseorder.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── mjiip │ │ │ └── tests │ │ │ └── p_o │ │ │ ├── RunP_OPlugin.java │ │ │ └── RunXJC.java │ ├── po-2.3 │ │ └── pom.xml │ ├── po-multi-specversion │ │ ├── jakarta │ │ │ └── pom.xml │ │ ├── javax │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── schema │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── purchaseorder.xjb │ │ │ └── purchaseorder.xsd │ ├── po-scd │ │ ├── build-1.5.bat │ │ ├── build-1.6.bat │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── bindings.xjb │ │ │ └── purchaseorder.xsd │ ├── pom.xml │ ├── res-resources │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── bindings.xjb │ │ │ ├── catalog.cat │ │ │ └── schemas │ │ │ ├── purchaseorder.xsd │ │ │ ├── schema-other.xsd │ │ │ ├── schema.xs │ │ │ └── schema.xsd │ ├── res-star │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── tests │ │ │ └── resstar │ │ │ └── ChecksTest.java │ ├── res │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── bindings.xjb │ │ │ │ ├── catalog.cat │ │ │ │ └── schemas │ │ │ │ │ ├── purchaseorder.xsd │ │ │ │ │ ├── schema-other.xsd │ │ │ │ │ ├── schema.xs │ │ │ │ │ └── schema.xsd │ │ │ └── schema │ │ │ │ └── ogc │ │ │ │ └── wms │ │ │ │ └── 1.3.0 │ │ │ │ └── exceptions_1_3_0.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── tests │ │ │ └── res │ │ │ └── RunResMojo.java │ ├── rnc │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ └── georss.rnc │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jvnet │ │ │ └── jaxb │ │ │ └── maven │ │ │ └── tests │ │ │ └── rnc │ │ │ ├── DatatypeLibraryLoaderTest.java │ │ │ └── RunRNCMojo.java │ ├── tse │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── a │ │ │ │ ├── A2Enum.java │ │ │ │ └── ObjectFactory.java │ │ │ └── resources │ │ │ ├── a.xsd │ │ │ └── b.xsd │ ├── two │ │ ├── build-1.5.bat │ │ ├── build-1.6.bat │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── schema.xs │ │ │ │ └── schema.xsd │ │ │ └── test │ │ │ ├── resources │ │ │ └── log4j.properties │ │ │ └── samples │ │ │ └── 1.xml │ ├── wsdl-file │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── resources │ │ │ │ ├── CustomerService.wsdl │ │ │ │ └── customer.xsd │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── customerservice │ │ │ └── service │ │ │ └── test │ │ │ ├── JAXBContextTest.java │ │ │ ├── ModelTest.java │ │ │ └── ServiceTest.java │ ├── wsdl │ │ ├── build-1.5.bat │ │ ├── build-1.6.bat │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── net │ │ │ └── webservicex │ │ │ └── test │ │ │ └── JAXBContextTest.java │ └── xjc-simple │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ ├── purchaseorder.xjb │ │ └── purchaseorder.xsd └── www │ ├── alm-process │ └── snippets │ │ └── page.xml │ ├── docs │ └── guide.html │ ├── index.html │ └── project_tools.html └── pom.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/maven-build-action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/.github/workflows/maven-build-action.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | jdk: 3 | - oraclejdk8 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/README.md -------------------------------------------------------------------------------- /hyperjaxb/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/.project -------------------------------------------------------------------------------- /hyperjaxb/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /hyperjaxb/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /hyperjaxb/ejb/etc/ejb-3_0-fr-spec-persistence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/etc/ejb-3_0-fr-spec-persistence.pdf -------------------------------------------------------------------------------- /hyperjaxb/ejb/etc/java_persistence-2_0-edr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/etc/java_persistence-2_0-edr-spec.pdf -------------------------------------------------------------------------------- /hyperjaxb/ejb/etc/persistence-2_0-final-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/etc/persistence-2_0-final-spec.pdf -------------------------------------------------------------------------------- /hyperjaxb/ejb/etc/persistence-2_4-pfd2-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/etc/persistence-2_4-pfd2-spec.pdf -------------------------------------------------------------------------------- /hyperjaxb/ejb/extensions/naming/custom-naming/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/extensions/naming/custom-naming/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/extensions/naming/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/extensions/naming/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/extensions/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/plugin/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/roundtrip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/roundtrip/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/roundtrip/src/main/resources/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/roundtrip/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/roundtrip/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/roundtrip/src/test/samples/sample1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/roundtrip/src/test/samples/sample1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/roundtrip/src/test/samples/sample2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/roundtrip/src/test/samples/sample3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/roundtrip/src/test/samples/sample3.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/roundtrip/src/test/samples/sample4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/roundtrip/src/test/samples/sample4.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/runtime/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/runtime/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/build-1.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/build-1.5.bat -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/build-1.6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/build-1.6.bat -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/customerservice-cxf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/customerservice-cxf/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-customized-eclipselink/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-customized-eclipselink/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-customized-eclipselink/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-customized-eclipselink/src/test/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/build-1.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-initial/build-1.5.bat -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/build-1.6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-initial/build-1.6.bat -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-initial/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-initial/project-build.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-initial/project-pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/src/test/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-initial/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-initial/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/build-1.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/build-1.5.bat -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/build-1.6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/build-1.6.bat -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/po-maven-jaxb2-plugin/project-pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/src/main/assembly/ant-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/src/main/assembly/ant-src.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/uniprot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/uniprot/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/uniprot/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/uniprot/project-build.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/uniprot/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/uniprot/project-pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/uniprot/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/uniprot/src/test/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/samples/uniprot/src/test/samples/P01189.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/samples/uniprot/src/test/samples/P01189.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/customizations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/customizations/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/customizations/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/customizations/src/site/site.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/orm.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/orm.diff -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/orm_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/orm_1_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/orm_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/orm_2_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/orm_3_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/orm_3_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/orm_3_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/orm_3_1.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/persistence_1_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/persistence_1_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/persistence_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/persistence_2_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/persistence_3_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/persistence_3_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/persistence/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/persistence/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/schemas/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/schemas/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/basic/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/basic/project-build.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/basic/project-pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/src/it/java/.placeholder: -------------------------------------------------------------------------------- 1 | #empty file for parent folder to exist in git (java) -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/src/it/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/basic/src/it/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/src/it/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/basic/src/it/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/src/main/resources/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/src/test/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/basic/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/src/main/assembly/ant-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/src/main/assembly/ant-src.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/templates/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/templates/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/addressbook/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/addressbook/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/addressbook/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/addressbook/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/addressbook/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/addressbook/src/test/samples/2.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ak/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ak/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ak/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ak/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ak/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ak/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ak/src/test/samples/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ak/src/test/samples/test.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/annox/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/annox/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/annox/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/annox/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/annox/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/annox/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/annox/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/annox/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/1.mixed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/1.mixed.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/2.mixed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/2.mixed.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/2.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/3.mixed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/3.mixed.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/3.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/4.mixed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/4.mixed.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/4.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/5.mixed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/5.mixed.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/5.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/6.mixed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/6.mixed.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/any/src/test/samples/6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/any/src/test/samples/6.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/bibtexml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/bibtexml/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/bibtexml/src/main/resources/bibtexml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/bibtexml/src/main/resources/bibtexml.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/bibtexml/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/bibtexml/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ccr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ccr/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ccr/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ccr/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ccr/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ccr/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ccr/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ccr/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cda/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cda/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cda/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cda/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cda/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/component-jpa2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/component-jpa2/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/component/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/component/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/component/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/component/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/component/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/component/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cu-one/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cu-one/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cu-one/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cu-one/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cu-one/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cu-one/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cu-one/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cu-one/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cu-one/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cu-one/src/test/samples/2.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cu-one/src/test/samples/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cu-one/src/test/samples/3.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/cu-one/src/test/samples/5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/cu-one/src/test/samples/5.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/custom-naming/extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/custom-naming/extension/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/custom-naming/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/custom-naming/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/custom-naming/schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/custom-naming/schema/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/customType/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/customType/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/customType/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/customType/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/customType/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/customType/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/customizations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/customizations/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/customizations/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/src/main/resources/dc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/src/main/resources/dc.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/src/main/resources/dcmitype.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/src/main/resources/dcmitype.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/src/main/resources/dcterms.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/src/main/resources/dcterms.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/src/main/resources/qualifieddc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/src/main/resources/qualifieddc.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dc/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dc/src/test/samples/2.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/derby/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/derby/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/derby/src/main/resources/issues.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/derby/src/main/resources/issues.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/derby/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/derby/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/derby/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/derby/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/derby/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/derby/src/test/samples/issue137.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/derby/src/test/samples/issue137.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/device/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/device/src/main/resources/device.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/device/src/main/resources/device.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/device/src/main/resources/device.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/device/src/main/resources/device.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/device/src/test/samples/serversample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/device/src/test/samples/serversample.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dl/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dl/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dl/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dl/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dl/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dl/src/test/samples/test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dl/src/test/samples/test1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dom/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dom/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dom/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dom/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dom/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dom/src/test/samples/anySkipSingle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dom/src/test/samples/anySkipSingle.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dom/src/test/samples/domCollection.txml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dom/src/test/samples/domCollection.txml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dom/src/test/samples/domSingle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dom/src/test/samples/domSingle.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dy/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dy/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dy/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dy/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/dy/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/dy/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/XMLSchema.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/XMLSchema.dtd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/cms.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/cms.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/datatypes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/datatypes.dtd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/lcm.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/lcm.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/query.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/query.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/rim.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/rim.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/rs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/rs.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/main/resources/xml.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ebxmlrr/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ebxmlrr/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/CommonTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/CommonTypes.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/geo-oasis.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/geo-oasis.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/gml-oasis.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/gml-oasis.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/xAL-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/xAL-types.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/xAL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/xAL.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/xNL-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/xNL-types.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/xNL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/xNL.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/xPIL-types.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/xPIL-types.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/xPIL.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/xPIL.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/main/resources/xlinks.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/main/resources/xlinks.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/edxl/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/edxl/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ek/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ek/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ek/src/main/resources/Transaction3.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ek/src/main/resources/Transaction3.0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ek/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ek/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ek/src/test/samples/Transaction3.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ek/src/test/samples/Transaction3.0.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable-jpa2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable-jpa2/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/2.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/3.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/4.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable-jpa2/src/test/samples/5.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable/src/test/samples/2.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/embeddable/src/test/samples/3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/embeddable/src/test/samples/3.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/eminq/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/eminq/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/enum/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/enum/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/enum/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/enum/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/enum/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/enum/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/enum/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/enum/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/enum/src/test/samples/issue143[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/enum/src/test/samples/issue143[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/a/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/a/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/a/src/main/resources/a.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/a/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/a/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/b/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/b/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/b/src/main/resources/a.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/b/src/main/resources/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/b/src/main/resources/b.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/b/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/b/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/episodes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/episodes/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/equals-builder/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/equals-builder/.project -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/equals-builder/builder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/equals-builder/builder/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/equals-builder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/equals-builder/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/equals-builder/schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/equals-builder/schema/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/fpml-pretrade/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/fpml-pretrade/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/idSymbolSpace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/idSymbolSpace/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/idSymbolSpace/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/idSymbolSpace/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ids/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ids/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ids/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ids/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ids/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ids/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ids/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ids/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ids/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ids/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ids/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ids/src/test/samples/2.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-eportfolio/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-eportfolio/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/accs_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/accs_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/actv_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/actv_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/affl_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/affl_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/comp_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/comp_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/engresume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/engresume.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/goal_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/goal_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/iden_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/iden_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/intt_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/intt_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/isrmapv1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/isrmapv1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/qcln_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/qcln_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/rltp_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/rltp_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/skey_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/skey_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ims-lip/src/test/samples/trns_001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ims-lip/src/test/samples/trns_001.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ioda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ioda/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ioda/src/main/resources/ioda_styles.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ioda/src/main/resources/ioda_styles.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ioda/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ioda/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ioda/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ioda/src/test/samples/900099.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ioda/src/test/samples/900099.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues-el/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues-el/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues-el/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues-el/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues-el/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues-el/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues-jpa2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues-jpa2/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues-pre/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues-pre/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue108[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue108[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue129[0].xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue131[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue131[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue138.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue138.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue140[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue140[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue140[1].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue140[1].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue140[2].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue140[2].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue142[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue142[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue44One.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue44One.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue44five.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue44five.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue44four.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue44four.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue44three.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue44three.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue44two.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue44two.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue53[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue53[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue66.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue66.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue75.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue86X1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue86X1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue91.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue91.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue92.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue92.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issue93.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/issues/src/test/samples/issue93.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/issues/src/test/samples/issueHJIII41[0].xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/src/main/resources/NewsML_1.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/src/main/resources/NewsML_1.2.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/src/main/resources/XMLSchema.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/src/main/resources/XMLSchema.dtd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/src/main/resources/datatypes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/src/main/resources/datatypes.dtd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/src/main/resources/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/src/main/resources/xml.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nml/src/test/samples/samplenewsml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nml/src/test/samples/samplenewsml.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/fitgk10183.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/fitgk10183.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/fitgk10184.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/fitgk10184.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/nokis09162.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/nokis09162.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/nokis18804.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/nokis18804.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/npash40938.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/npash40938.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/npash48009.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/npash48009.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/plang74211.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/plang74211.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/wsdnw00303.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/wsdnw00303.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/nokis/src/test/samples/wsdnw11987.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/nokis/src/test/samples/wsdnw11987.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/main/resources/schema.xsd-old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/main/resources/schema.xsd-old -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/base.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/complexTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/complexTypes.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/customizedId.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/customizedId.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/domTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/domTypes.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/enumTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/enumTypes.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/extended.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/extended.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/issue57.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/issue58.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/issue61.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/issue61.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/issue62.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/issue62.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/simpleTypes-1.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/simpleTypes-1.5.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/one/src/test/samples/simpleTypes-1.6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/one/src/test/samples/simpleTypes-1.6.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/onix30/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/onix30/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/onix30/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/onix30/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ota/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ota/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ota/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ota/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ota/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ota/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ota/src/test/samples/OTA_AirAvailRQ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ota/src/test/samples/OTA_AirAvailRQ.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ota/src/test/samples/OTA_AirAvailRS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ota/src/test/samples/OTA_AirAvailRS.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ows/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ows/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ows/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ows/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/ows/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/ows/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/pesc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/pesc/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/pesc/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/pesc/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/pesc/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/pesc/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/pesc/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/plmxml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/plmxml/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/plmxml/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/plmxml/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/plmxml/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-customized/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-customized/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-customized/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-customized/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-el-customized/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-el-customized/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-el-customized/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-el-customized/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-jaxb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-jaxb/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-jaxb/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-jaxb/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-jaxb/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-jaxb/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-jpa-2.1/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-jpa-2.1/.project -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-jpa-2.1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-jpa-2.1/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-jpa-2.1/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-jpa-2.1/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-jpa-2.1/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-jpa-2.1/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-maxidlength/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-maxidlength/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-maxidlength/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-maxidlength/src/main/resources/a.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-maxidlength/src/test/samples/a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-maxidlength/src/test/samples/a.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-maxidlength/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-maxidlength/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-mysql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-mysql/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-mysql/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-mysql/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-mysql/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-mysql/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-tl-customized/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-tl-customized/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po-tl-customized/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po-tl-customized/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po/src/main/resources/a.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po/src/test/samples/a.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po/src/test/samples/a.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/po/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/po/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/polyform/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/polyform/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/polyform/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/polyform/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/polyform/src/test/samples/Alpha[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/polyform/src/test/samples/Alpha[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/polyform/src/test/samples/Beta[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/polyform/src/test/samples/Beta[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/polyform/src/test/samples/Delta[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/polyform/src/test/samples/Delta[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/polyform/src/test/samples/Gamma[0].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/polyform/src/test/samples/Gamma[0].xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/punit/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/punit/core/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/punit/core/src/main/etc/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/punit/core/src/main/etc/persistence.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/punit/core/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/punit/core/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/punit/core/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/punit/core/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/punit/ext/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/punit/ext/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/punit/ext/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/punit/ext/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/punit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/punit/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/px/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/px/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/px/src/main/etc/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/px/src/main/etc/persistence.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/px/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/px/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/px/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/px/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/px/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/px/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/src/main/resources/cms.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/src/main/resources/cms.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/src/main/resources/lcm.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/src/main/resources/lcm.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/src/main/resources/query.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/src/main/resources/query.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/src/main/resources/rim.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/src/main/resources/rim.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/src/main/resources/rs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/src/main/resources/rs.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/regrep/src/main/resources/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/regrep/src/main/resources/xml.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/XMLSchema.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/XMLSchema.dtd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/datatypes.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/datatypes.dtd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/lcm.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/lcm.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/query.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/query.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/rim.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/rim.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/rs.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/rs.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/spi.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/spi.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/main/resources/xsd/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/main/resources/xsd/xml.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/rim/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/rim/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sbml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sbml/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sbml/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sbml/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sbml/src/main/resources/mathml2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sbml/src/main/resources/mathml2.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sbml/src/main/resources/sbml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sbml/src/main/resources/sbml.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sbml/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sbml/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sbml/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sbml/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sepa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sepa/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sepa/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sepa/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sepa/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sepa/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sepa/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sepa/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sepa/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/service/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/service/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/service/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/service/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/service/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/simple/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/simple/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/simple/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/simple/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/simple/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sml/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sml/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sml/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sml/src/test/samples/sportsml-golf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sml/src/test/samples/sportsml-golf.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/sml/src/test/samples/sportsml-tennis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/sml/src/test/samples/sportsml-tennis.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/st/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/st/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/st/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/st/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/st/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/st/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/st/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/st/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/star/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/star/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/star/src/main/resources/STAR/Rev5.1.4/BODExamples/GetRepairOrder.xml: -------------------------------------------------------------------------------- 1 | Could not find a global element with name "GetRepairOrder" 2 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/star/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/star/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/star/src/test/samples/ConfirmBOD.txml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/star/src/test/samples/ConfirmBOD.txml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/star/src/test/samples/GetModelCodes.txml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/star/src/test/samples/GetModelCodes.txml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/star/src/test/samples/GetPartsOrder.txml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/star/src/test/samples/GetPartsOrder.txml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/star/src/test/samples/GetRepairOrder.txml: -------------------------------------------------------------------------------- 1 | Could not find a global element with name "GetRepairOrder" 2 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/tp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/tp/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/tp/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/tp/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/tp/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/tp/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/transient-ids/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/transient-ids/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/transient-ids/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/transient-ids/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/uniprot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/uniprot/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/uniprot/src/test/samples/P01189.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/uniprot/src/test/samples/P01189.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/verylong/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/verylong/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/verylong/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/verylong/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/verylong/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/verylong/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/web/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/web/src/main/resources/j2ee_1_4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/web/src/main/resources/j2ee_1_4.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/web/src/main/resources/jsp_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/web/src/main/resources/jsp_2_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/web/src/main/resources/web-app_2_4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/web/src/main/resources/web-app_2_4.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/web/src/main/resources/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/web/src/main/resources/xml.xsd -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/web/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/web/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/web/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/xacml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/xacml/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/xacml/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/xacml/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/xmldsig/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/xmldsig/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/xmldsig/src/test/samples/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/xmldsig/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/xmldsig/src/test/samples/1.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tests/xmldsig/src/test/samples/signed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tests/xmldsig/src/test/samples/signed.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tutorials/po/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/step-one/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tutorials/po/step-one/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/step-one/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tutorials/po/step-one/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/step-three/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tutorials/po/step-three/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/step-three/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/step-two/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tutorials/po/step-two/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/step-two/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/po/step-two/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tutorials/po/step-two/src/test/samples/po.xml -------------------------------------------------------------------------------- /hyperjaxb/ejb/tutorials/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/ejb/tutorials/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/etc/JAXB 2.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/etc/JAXB 2.1.pdf -------------------------------------------------------------------------------- /hyperjaxb/etc/announcements/hyperjaxb3Release0.3.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/etc/announcements/hyperjaxb3Release0.3.wiki -------------------------------------------------------------------------------- /hyperjaxb/etc/jaxb-1_0-fr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/etc/jaxb-1_0-fr-spec.pdf -------------------------------------------------------------------------------- /hyperjaxb/etc/jaxb-2_0-fr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/etc/jaxb-2_0-fr-spec.pdf -------------------------------------------------------------------------------- /hyperjaxb/etc/promotion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/etc/promotion.txt -------------------------------------------------------------------------------- /hyperjaxb/maven/plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/maven/plugin/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/maven/plugin/src/test/resources/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/maven/plugin/src/test/resources/purchaseorder.xsd -------------------------------------------------------------------------------- /hyperjaxb/maven/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/maven/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/maven/testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/maven/testing/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/maven/testing/src/test/resources/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/maven/testing/src/test/resources/purchaseorder.xsd -------------------------------------------------------------------------------- /hyperjaxb/misc/dynamic/build-1.6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/dynamic/build-1.6.bat -------------------------------------------------------------------------------- /hyperjaxb/misc/dynamic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/dynamic/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/dynamic/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyperjaxb/misc/dynamic/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/dynamic/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /hyperjaxb/misc/jdo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/jdo/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/jdo/roundtrip/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/jdo/roundtrip/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/jdo/roundtrip/src/test/samples/sample1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/jdo/roundtrip/src/test/samples/sample1.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/jdo/sample-hotel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/jdo/sample-hotel/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/jdo/schemas/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/jdo/schemas/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/jdo/schemas/src/main/resources/jdo_2_0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/jdo/schemas/src/main/resources/jdo_2_0.xsd -------------------------------------------------------------------------------- /hyperjaxb/misc/templates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/templates/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/templates/src/main/assembly/ant-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/templates/src/main/assembly/ant-src.xml -------------------------------------------------------------------------------- /hyperjaxb/misc/templates/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/misc/templates/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /hyperjaxb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/pom.xml -------------------------------------------------------------------------------- /hyperjaxb/src/main/resources/config/maven-checks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/src/main/resources/config/maven-checks.xml -------------------------------------------------------------------------------- /hyperjaxb/src/main/resources/config/maven-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/src/main/resources/config/maven-header.txt -------------------------------------------------------------------------------- /hyperjaxb/src/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/hyperjaxb/src/site.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/plugin/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/plugin/src/test/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/plugin/src/test/resources/schema.xsd -------------------------------------------------------------------------------- /jaxb-annotate-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/annotate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/samples/annotate/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/annotate/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/samples/annotate/project-build.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/annotate/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/samples/annotate/project-pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/annotate/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/annotate/src/test/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/annotate/src/test/resources/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/samples/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/src/main/assembly/ant-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/samples/src/main/assembly/ant-src.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/samples/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/samples/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/annotate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/annotate/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/annotations/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/annotations/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/annox/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/annox/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/base-dependent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/base-dependent/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/issues/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/issues/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/one/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/one/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/one/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/one/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/pom.xml -------------------------------------------------------------------------------- /jaxb-annotate-parent/tests/removexmlannotate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annotate-parent/tests/removexmlannotate/pom.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/jaxb-annox/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/jaxb-annox/pom.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/java/org/jvnet/jaxb/annox/parser/tests/Six.java: -------------------------------------------------------------------------------- 1 | package org.jvnet.jaxb.annox.parser.tests; 2 | 3 | @G 4 | public class Six { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/resources/org/jvnet/jaxb/annox/parser/tests/eight.txt: -------------------------------------------------------------------------------- 1 | @org.jvnet.jaxb.annox.parser.tests.K( { "k", "kay" }) 2 | -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/resources/org/jvnet/jaxb/annox/parser/tests/eleven.txt: -------------------------------------------------------------------------------- 1 | @org.jvnet.jaxb.annox.parser.tests.H 2 | -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/resources/org/jvnet/jaxb/annox/parser/tests/five.txt: -------------------------------------------------------------------------------- 1 | @org.jvnet.jaxb.annox.parser.tests.F(eman = "tset") 2 | -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/resources/org/jvnet/jaxb/annox/parser/tests/package-info.java: -------------------------------------------------------------------------------- 1 | @D 2 | package org.jvnet.jaxb.annox.parser.tests; 3 | -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/resources/org/jvnet/jaxb/annox/parser/tests/seven.txt: -------------------------------------------------------------------------------- 1 | @org.jvnet.jaxb.annox.parser.tests.J("jay") 2 | -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/resources/org/jvnet/jaxb/annox/parser/tests/six.txt: -------------------------------------------------------------------------------- 1 | @org.jvnet.jaxb.annox.parser.tests.G 2 | -------------------------------------------------------------------------------- /jaxb-annox-parent/jaxb-annox/src/test/resources/org/jvnet/jaxb/annox/parser/tests/three.txt: -------------------------------------------------------------------------------- 1 | @org.jvnet.jaxb.annox.parser.tests.D 2 | -------------------------------------------------------------------------------- /jaxb-annox-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/pom.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/samples/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/samples/po/pom.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/samples/po/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/samples/po/project-build.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/samples/po/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/samples/po/project-pom.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/samples/pom.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/samples/src/main/assembly/ant-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/samples/src/main/assembly/ant-src.xml -------------------------------------------------------------------------------- /jaxb-annox-parent/samples/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-annox-parent/samples/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /jaxb-bom-parent/jaxb-bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-bom-parent/jaxb-bom/pom.xml -------------------------------------------------------------------------------- /jaxb-bom-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-bom-parent/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/TODO.md -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-ant/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/jaxb-plugins-ant/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-runtime/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/jaxb-plugins-runtime/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-runtime/src/test/resources/org/jvnet/jaxb/lang/tests/Test[0].xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-shaded/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/jaxb-plugins-shaded/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-shaded/src/main/java/org/jvnet/jaxb/plugin/Dummy.java: -------------------------------------------------------------------------------- 1 | package org.jvnet.jaxb.plugin; 2 | 3 | public class Dummy {} 4 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-shaded/src/main/resources/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/jaxb-plugins-testing/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-testing/src/test/samples/1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-testing/src/test/samples/2.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins-tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/jaxb-plugins-tools/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/jaxb-plugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/jaxb-plugins/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/basic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/basic/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/basic/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/basic/project-build.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/basic/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/basic/project-pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/basic/src/main/assembly/src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/basic/src/main/assembly/src.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/basic/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/basic/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/basic/src/test/samples/1.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/cxf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/cxf/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/cxf/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/cxf/project-pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/cxf/src/main/resources/main.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/cxf/src/main/resources/main.wsdl -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po-simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po-simple/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po-simple/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po-simple/project-build.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po-simple/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po-simple/project-pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po-simple/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po/project-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po/project-build.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po/project-pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po/src/main/java/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po/src/test/resources/EMPTY.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po/src/test/resources/EMPTY.git -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/po/src/test/samples/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/po/src/test/samples/po.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/src/main/assembly/ant-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/src/main/assembly/ant-src.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/samples/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/samples/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/JAXB-1058/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/JAXB-1058/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/booleangetter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/booleangetter/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/camelcase/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/camelcase/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/commons_lang/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/commons_lang/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/commons_lang_custom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/commons_lang_custom/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/copyable/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/copyable/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/defaultvalue/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/defaultvalue/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/elementwrapper/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/elementwrapper/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/enumtostring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/enumtostring/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/episodes/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/episodes/a/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/episodes/a/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/episodes/a/src/test/samples/1.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/episodes/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/episodes/b/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/episodes/b/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/episodes/b/src/test/samples/1.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/episodes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/episodes/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/fluentapi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/fluentapi/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/ignoring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/ignoring/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/issues-legacy-ns/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/issues-legacy-ns/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/issues/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/issues/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/map_init/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/map_init/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/namespace/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/namespace/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/namespace/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/namespace/src/main/resources/a.xsd -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/namespace/src/main/resources/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/namespace/src/main/resources/b.xsd -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/namespace/src/main/resources/c.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/namespace/src/main/resources/c.xsd -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/one/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/one/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/one/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/one/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/one/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/one/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/one/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/one/src/test/samples/1.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/one/src/test/samples/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/one/src/test/samples/2.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/parentpointer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/parentpointer/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/po-2.3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/po-2.3/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/po/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/propertylistenerinjector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/propertylistenerinjector/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/qa-simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/qa-simple/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/qa-strategic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/qa-strategic/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/simple-hashCode-equals-01/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/simple-hashCode-equals-01/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/simplify-01/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/simplify-01/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/simplify-02/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/simplify-02/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/simplify-03/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/simplify-03/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/superclass/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/superclass/a/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/superclass/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/superclass/b/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/superclass/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/superclass/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/wildcard/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/wildcard/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/zj/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/zj/pom.xml -------------------------------------------------------------------------------- /jaxb-plugins-parent/tests/zj/src/main/resources/ObisData.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-plugins-parent/tests/zj/src/main/resources/ObisData.xsd -------------------------------------------------------------------------------- /jaxb-tools-bom-parent/jaxb-tools-bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-tools-bom-parent/jaxb-tools-bom/pom.xml -------------------------------------------------------------------------------- /jaxb-tools-bom-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-tools-bom-parent/pom.xml -------------------------------------------------------------------------------- /jaxb-tools-docs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-tools-docs/pom.xml -------------------------------------------------------------------------------- /jaxb-tools-docs/src/main/docs/jaxb-tools-docs/iconic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/jaxb-tools-docs/src/main/docs/jaxb-tools-docs/iconic.css -------------------------------------------------------------------------------- /maven-plugin/dist/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /files/ 3 | -------------------------------------------------------------------------------- /maven-plugin/dist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/dist/pom.xml -------------------------------------------------------------------------------- /maven-plugin/plugin-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/plugin-core/pom.xml -------------------------------------------------------------------------------- /maven-plugin/plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/plugin/pom.xml -------------------------------------------------------------------------------- /maven-plugin/plugin/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/plugin/src/site/site.xml -------------------------------------------------------------------------------- /maven-plugin/plugin/src/test/resources/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/plugin/src/test/resources/purchaseorder.xsd -------------------------------------------------------------------------------- /maven-plugin/plugin/src/test/resources/test-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/plugin/src/test/resources/test-pom.xml -------------------------------------------------------------------------------- /maven-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/catalog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/catalog/pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/catalog/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/catalog/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/catalog/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/catalog/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /maven-plugin/samples/catalog/src/main/resources/catalog.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/catalog/src/main/resources/catalog.cat -------------------------------------------------------------------------------- /maven-plugin/samples/dtd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/dtd/pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/dtd/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/dtd/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/dtd/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/dtd/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /maven-plugin/samples/dtd/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/dtd/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /maven-plugin/samples/episode/a/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/a/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/episode/a/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/a/src/main/resources/a.xsd -------------------------------------------------------------------------------- /maven-plugin/samples/episode/b/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/b/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/episode/b/src/main/resources/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/b/src/main/resources/b.xsd -------------------------------------------------------------------------------- /maven-plugin/samples/episode/c/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/c/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/episode/c/src/main/resources/c.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/c/src/main/resources/c.xsd -------------------------------------------------------------------------------- /maven-plugin/samples/episode/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/episode/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/episode/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/jaxbplugins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/jaxbplugins/pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/jaxbplugins/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/jaxbplugins/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/po/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/po/pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/po/project-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/po/project-pom.xml -------------------------------------------------------------------------------- /maven-plugin/samples/po/src/main/assembly/maven-src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/po/src/main/assembly/maven-src.xml -------------------------------------------------------------------------------- /maven-plugin/samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/samples/pom.xml -------------------------------------------------------------------------------- /maven-plugin/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/src/site/site.xml -------------------------------------------------------------------------------- /maven-plugin/testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/testing/pom.xml -------------------------------------------------------------------------------- /maven-plugin/testing/src/site/site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/testing/src/site/site.xml -------------------------------------------------------------------------------- /maven-plugin/testing/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/testing/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /maven-plugin/testing/src/test/resources/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/testing/src/test/resources/purchaseorder.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/JAXB-1044/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/JAXB-1044/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/JAXB-1044/src/main/resources/a.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/JAXB-1044/src/main/resources/a.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/JAXB-1044/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/JAXB-1044/src/main/resources/a.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/JAXB-1044/src/main/resources/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/JAXB-1044/src/main/resources/b.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/JAXB-1044/src/main/resources/catalog.cat: -------------------------------------------------------------------------------- 1 | REWRITE_SYSTEM "http://www.ab.org" "." 2 | 3 | -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-49/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-49/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-53/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-53/a/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-53/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-53/b/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-53/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-53/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-69/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-69/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-70/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-70/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-77/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-77/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-77/service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-77/service/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-79/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-79/a/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-79/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-79/b/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-79/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-79/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-82/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-82/a/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-82/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-82/b/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-82/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-82/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-86/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-86/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/MAVEN_JAXB2_PLUGIN-87/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/MAVEN_JAXB2_PLUGIN-87/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/catalog-xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/catalog-xml/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/catalog/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/catalog/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/catalog/src/main/resources/catalog.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/catalog/src/main/resources/catalog.cat -------------------------------------------------------------------------------- /maven-plugin/tests/catalog/src/main/resources/schema_a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/catalog/src/main/resources/schema_a.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/catalog/src/main/resources/schema_b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/catalog/src/main/resources/schema_b.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/a/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/a/src/main/resources/a.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/a/src/main/resources/a.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/a/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/a/src/main/resources/a.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/b/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/b/src/main/resources/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/b/src/main/resources/b.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/c/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/c/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/c/src/main/resources/c.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/c/src/main/resources/c.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/d/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/d/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/d/src/main/resources/d.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/d/src/main/resources/d.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/e/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/e/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/e/src/main/resources/d.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/e/src/main/resources/d.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/episodes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/episodes/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/full-build-1.7.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/full-build-1.7.bat -------------------------------------------------------------------------------- /maven-plugin/tests/full-build-1.8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/full-build-1.8.bat -------------------------------------------------------------------------------- /maven-plugin/tests/full-build-9.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/full-build-9.bat -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-16/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-16/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-16/src/main/resources/ab/a.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-16/src/main/resources/ab/a.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-16/src/main/resources/ab/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-16/src/main/resources/ab/a.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-16/src/main/resources/ab/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-16/src/main/resources/ab/b.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-16/src/main/resources/ab/catalog.cat: -------------------------------------------------------------------------------- 1 | REWRITE_SYSTEM "http://www.ab.org" "../ab" 2 | 3 | -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-19/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-19/a/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-19/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-19/b/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-19/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-19/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-22/a/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-22/a/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-22/a/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-22/a/src/main/resources/a.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-22/b/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-22/b/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-22/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-22/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-23/one-non-strict/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-23/one-non-strict/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-23/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-23/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-23/two-non-strict/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-23/two-non-strict/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/gh-issue-58/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/gh-issue-58/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/issues/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/issues/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/issues/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/issues/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/issues/src/main/resources/depends.dep: -------------------------------------------------------------------------------- 1 | See issue #99. 2 | If this file is changed, compilation will be forced. 3 | -------------------------------------------------------------------------------- /maven-plugin/tests/issues/src/main/resources/depends.txt: -------------------------------------------------------------------------------- 1 | See issue #99. 2 | -------------------------------------------------------------------------------- /maven-plugin/tests/issues/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/issues/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/java-9/install-10.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/java-9/install-10.bat -------------------------------------------------------------------------------- /maven-plugin/tests/java-9/install-8.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/java-9/install-8.bat -------------------------------------------------------------------------------- /maven-plugin/tests/java-9/install-9.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/java-9/install-9.bat -------------------------------------------------------------------------------- /maven-plugin/tests/java-9/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/java-9/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/javadoc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/javadoc/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/javadoc/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/javadoc/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/jt-194/main/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-194/main/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-194/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-194/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-194/xjb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-194/xjb/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-194/xsd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-194/xsd/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-244/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-244/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-244/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-244/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/jt-244/src/main/resources/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-244/src/main/resources/catalog.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-244/src/main/resources/schemas/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-244/src/main/resources/schemas/a.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/jt-250/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-250/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-250/src/xsd/v1/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-250/src/xsd/v1/purchaseorder.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/jt-250/src/xsd/v2/purchaseorder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-250/src/xsd/v2/purchaseorder.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/jt-306/common-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-306/common-model/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-306/helper-ws-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-306/helper-ws-model/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-306/import-ws-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-306/import-ws-model/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-306/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-306/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-40/generate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-40/generate/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-40/generate/src/main/resources/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-40/generate/src/main/resources/b.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/jt-40/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-40/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/jt-40/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/jt-40/test/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/p_o-parentbom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/p_o-parentbom/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/p_o/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/p_o/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/p_o/src/main/resources/binding.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/p_o/src/main/resources/binding.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/po-2.3/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-2.3/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/po-multi-specversion/jakarta/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-multi-specversion/jakarta/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/po-multi-specversion/javax/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-multi-specversion/javax/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/po-multi-specversion/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-multi-specversion/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/po-multi-specversion/schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-multi-specversion/schema/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/po-scd/build-1.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-scd/build-1.5.bat -------------------------------------------------------------------------------- /maven-plugin/tests/po-scd/build-1.6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-scd/build-1.6.bat -------------------------------------------------------------------------------- /maven-plugin/tests/po-scd/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-scd/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/po-scd/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/po-scd/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/res-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/res-resources/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/res-star/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/res-star/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/res/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/res/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/res/src/main/resources/bindings.xjb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/res/src/main/resources/bindings.xjb -------------------------------------------------------------------------------- /maven-plugin/tests/res/src/main/resources/catalog.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/res/src/main/resources/catalog.cat -------------------------------------------------------------------------------- /maven-plugin/tests/rnc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/rnc/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/rnc/src/main/resources/georss.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/rnc/src/main/resources/georss.rnc -------------------------------------------------------------------------------- /maven-plugin/tests/tse/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/tse/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/tse/src/main/java/a/A2Enum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/tse/src/main/java/a/A2Enum.java -------------------------------------------------------------------------------- /maven-plugin/tests/tse/src/main/java/a/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/tse/src/main/java/a/ObjectFactory.java -------------------------------------------------------------------------------- /maven-plugin/tests/tse/src/main/resources/a.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/tse/src/main/resources/a.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/tse/src/main/resources/b.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/tse/src/main/resources/b.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/two/build-1.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/two/build-1.5.bat -------------------------------------------------------------------------------- /maven-plugin/tests/two/build-1.6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/two/build-1.6.bat -------------------------------------------------------------------------------- /maven-plugin/tests/two/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/two/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/two/src/main/resources/schema.xs: -------------------------------------------------------------------------------- 1 | This file must be excluded. 2 | -------------------------------------------------------------------------------- /maven-plugin/tests/two/src/main/resources/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/two/src/main/resources/schema.xsd -------------------------------------------------------------------------------- /maven-plugin/tests/two/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/two/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /maven-plugin/tests/two/src/test/samples/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/two/src/test/samples/1.xml -------------------------------------------------------------------------------- /maven-plugin/tests/wsdl-file/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/wsdl-file/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/wsdl/build-1.5.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/wsdl/build-1.5.bat -------------------------------------------------------------------------------- /maven-plugin/tests/wsdl/build-1.6.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/wsdl/build-1.6.bat -------------------------------------------------------------------------------- /maven-plugin/tests/wsdl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/wsdl/pom.xml -------------------------------------------------------------------------------- /maven-plugin/tests/xjc-simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/tests/xjc-simple/pom.xml -------------------------------------------------------------------------------- /maven-plugin/www/alm-process/snippets/page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/www/alm-process/snippets/page.xml -------------------------------------------------------------------------------- /maven-plugin/www/docs/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/www/docs/guide.html -------------------------------------------------------------------------------- /maven-plugin/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/www/index.html -------------------------------------------------------------------------------- /maven-plugin/www/project_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/maven-plugin/www/project_tools.html -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highsource/jaxb-tools/HEAD/pom.xml --------------------------------------------------------------------------------