alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Apache CXF example source code file (http-conf.xsd)

This example Apache CXF source code file (http-conf.xsd) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Apache CXF tags/keywords

apache, auth, authentication, basic, basic, challenge, holds, holds, http, http, license, license, see, this

The Apache CXF http-conf.xsd source code

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements. See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership. The ASF licenses this file
  to you under the Apache License, Version 2.0 (the
  "License"); you may not use this file except in compliance
  with the License. You may obtain a copy of the License at
 
  http://www.apache.org/licenses/LICENSE-2.0
 
  Unless required by applicable law or agreed to in writing,
  software distributed under the License is distributed on an
  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  KIND, either express or implied. See the License for the
  specific language governing permissions and limitations
  under the License.
-->

<xs:schema targetNamespace="http://cxf.apache.org/transports/http/configuration" 
           xmlns:xs="http://www.w3.org/2001/XMLSchema" 
           xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
           xmlns:http-conf="http://cxf.apache.org/transports/http/configuration" 
           xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
           xmlns:sec="http://cxf.apache.org/configuration/security"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:beans="http://www.springframework.org/schema/beans" 
           xmlns:cxf-beans="http://cxf.apache.org/configuration/beans"
           elementFormDefault="qualified" 
           attributeFormDefault="unqualified"
           xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
           jaxb:version="2.0">

    <xs:include schemaLocation="http://cxf.apache.org/schemas/wsdl/http-conf.xsd"/> 
    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" 
               schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd"/>
    <xs:import namespace="http://cxf.apache.org/configuration/security" 
               schemaLocation="http://cxf.apache.org/schemas/configuration/security.xsd"/>
    <xs:import namespace="http://www.springframework.org/schema/beans" 
               schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/>
    <xs:import namespace="http://cxf.apache.org/configuration/beans" 
               schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/>

    <!-- Conduit Specific Items -->

    <xs:element name="authorization"       type="sec:AuthorizationPolicy"/>
    <xs:element name="proxyAuthorization"  type="sec:ProxyAuthorizationPolicy"/>
    <xs:element name="tlsClientParameters" type="sec:TLSClientParametersType"/>
    <xs:element name="trustDecider"        type="cxf-beans:ClassOrBeanType"/>
    <xs:element name="authSupplier"        type="cxf-beans:ClassOrBeanType"/>
    <xs:element name="basicAuthSupplier"   type="cxf-beans:ClassOrBeanType"/>
    
    
    <xs:element name="conduit">
      <xs:complexType>
        <xs:complexContent>
          <xs:extension base="beans:identifiedType">
            <xs:all>
                <xs:element ref="http-conf:client" minOccurs="0">
                   <xs:annotation>
                     <xs:documentation>
                       Holds the parameters that configure
                       a client-side HTTP connection.
                     </xs:documentation>
                   </xs:annotation>
                </xs:element>
                <xs:element ref="http-conf:authorization" minOccurs="0">
                   <xs:annotation>
                     <xs:documentation>
                       Holds the parameters that configure
                       the Basic Authentication that will be preemptively
                       used. Note, supplying a Basic Auth Supplier object
                       is the preferred approach.
                     </xs:documentation>
                   </xs:annotation>
                </xs:element>
                <xs:element ref="http-conf:proxyAuthorization" minOccurs="0">
                   <xs:annotation>
                     <xs:documentation>
                       Holds the parameters that configure
                       the Basic Authentication for an outgoing HTTP
                       Proxy Server.
                     </xs:documentation>
                   </xs:annotation>
                </xs:element>
                <xs:element ref="http-conf:tlsClientParameters" minOccurs="0">
                   <xs:annotation>
                     <xs:documentation>
                       Holds the parameters that configure
                       the underlying SSL/TLS JSSE client-side 
                       of an HTTPS connection.
                     </xs:documentation>
                   </xs:annotation>
                </xs:element>
                <xs:element ref="http-conf:authSupplier" 
                			minOccurs="0" maxOccurs="1">
                   <xs:annotation>
                     <xs:documentation>
                       Holds the bean reference or class name
                       of an object that supplies Auth information
                       both preemptively and in response to a 401 HTTP
                       Challenge. This class must extend the abstract class 
                       org.apache.cxf.transport.http.HttpAuthSupplier.
                     </xs:documentation>
                   </xs:annotation>
                </xs:element>
                <xs:element ref="http-conf:basicAuthSupplier" 
                			minOccurs="0" maxOccurs="1">
                   <xs:annotation>
                     <xs:documentation>
                       Holds the bean reference or class name
                       of an object that supplies Auth information
                       both preemptively and in response to a 401 HTTP
                       Challenge. This class must extend the abstract class 
                       org.apache.cxf.transport.http.HttpBasicAuthSupplier.
                     </xs:documentation>
                   </xs:annotation>
                </xs:element>
                <xs:element ref="http-conf:trustDecider" 
                			minOccurs="0" maxOccurs="1">
                   <xs:annotation>
                     <xs:documentation>
                       Holds the bean reference or class name
                       of an object that checks the Http(s)URLConnection
                       that will establish trust for a connection with an
                       HTTP(S) server, before any information is sent to the
                       server, namely Basic Auth information. This class
                       must extend the abstract class
                       org.apache.cxf.transport.http.MessageTrustDecider. 
                     </xs:documentation>
                   </xs:annotation>
                </xs:element>
            </xs:all>
            <xs:attributeGroup ref="cxf-beans:beanAttributes"/>
          </xs:extension>
        </xs:complexContent>
      </xs:complexType>
    </xs:element>
    
    <xs:element name="destination">
      <xs:complexType>
        <xs:complexContent>
          <xs:extension base="beans:identifiedType">
            <xs:all>
	            <xs:element ref="http-conf:server" minOccurs="0">
	               <xs:annotation>
	                 <xs:documentation>
	                   Holds the parameters that configure
	                   a server-side HTTP connection.
	                 </xs:documentation>
	               </xs:annotation>
	            </xs:element>
	            <xs:element ref="http-conf:contextMatchStrategy" minOccurs="0">
	               <xs:annotation>
	                 <xs:documentation>
	                   Holds the parameters that configure
	                   the context match strategy for processing an HTTP request.
	                 </xs:documentation>
	               </xs:annotation>
	            </xs:element>
	            <xs:element ref="http-conf:fixedParameterOrder" minOccurs="0">
	               <xs:annotation>
	                 <xs:documentation>
	                   Signifies whether the parameter order of
	                   an HTTP request handled by this destination is fixed.
	                 </xs:documentation>
	               </xs:annotation>
	            </xs:element>
	        </xs:all>
            <xs:attributeGroup ref="cxf-beans:beanAttributes"/>
          </xs:extension>
        </xs:complexContent>
      </xs:complexType>
   </xs:element>
   
 </xs:schema>

Other Apache CXF examples (source code examples)

Here is a short list of links related to this Apache CXF http-conf.xsd source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.