Author: ningjiang Date: Tue Jan 13 06:17:34 2015 New Revision: 936018 Log: CXF-6193 updated the schemas of http-jetty.xsd and security.xsd
Modified: websites/production/cxf/content/schemas/configuration/http-jetty.xsd websites/production/cxf/content/schemas/configuration/security.xsd Modified: websites/production/cxf/content/schemas/configuration/http-jetty.xsd ============================================================================== --- websites/production/cxf/content/schemas/configuration/http-jetty.xsd (original) +++ websites/production/cxf/content/schemas/configuration/http-jetty.xsd Tue Jan 13 06:17:34 2015 @@ -52,6 +52,11 @@ <xs:documentation>Specifies the maximum number of threads available to the Jetty instance for processing requests.</xs:documentation> </xs:annotation> </xs:attribute> + <xs:attribute name="threadNamePrefix" type="xs:string"> + <xs:annotation> + <xs:documentation>Specifies the thread name prefix for threads that are used by the Jetty instance for processing requests.</xs:documentation> + </xs:annotation> + </xs:attribute> </xs:complexType> <xs:complexType name="ThreadingParametersIdentifiedType"> Modified: websites/production/cxf/content/schemas/configuration/security.xsd ============================================================================== --- websites/production/cxf/content/schemas/configuration/security.xsd (original) +++ websites/production/cxf/content/schemas/configuration/security.xsd Tue Jan 13 06:17:34 2015 @@ -249,15 +249,6 @@ </xs:documentation> </xs:annotation> </xs:attribute> - <xs:attribute name="keyPasswordCallbackHandler" type="xs:string"> - <xs:annotation> - <xs:documentation> - This attribute contains the name of the class implementing - password callback handler to unlock the keys withing the keystore. - Alternative to keyPassword attribute. - </xs:documentation> - </xs:annotation> - </xs:attribute> <xs:attribute name="provider" type="xs:string"> <xs:annotation> <xs:documentation> @@ -350,6 +341,18 @@ </xs:sequence> </xs:complexType> + <xs:complexType name="ExcludeProtocols"> + <xs:annotation> + <xs:documentation> + This structure holds a list of protocols that are to be excluded. + If this structure is not defined then SSLv3 is excluded by default + </xs:documentation> + </xs:annotation> + <xs:sequence> + <xs:element name="excludeProtocol" type="xs:string" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + <xs:complexType name="SecureRandomParameters"> <xs:annotation> <xs:documentation> @@ -547,6 +550,13 @@ </xs:documentation> </xs:annotation> </xs:element> + <xs:element name="excludeProtocols" type="tns:ExcludeProtocols" minOccurs="0"> + <xs:annotation> + <xs:documentation> + This element contains the the Protocols that will be excluded + </xs:documentation> + </xs:annotation> + </xs:element> <xs:element name="secureRandomParameters" type="tns:SecureRandomParameters" minOccurs="0"> <xs:annotation>