You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/12/28 14:11:46 UTC

[camel-website] branch spring-sec-2.24.2 created (now 0bdf1bd)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch spring-sec-2.24.2
in repository https://gitbox.apache.org/repos/asf/camel-website.git.


      at 0bdf1bd  Added Camel-spring-security schema for 2.24.2 release

This branch includes the following new commits:

     new 0bdf1bd  Added Camel-spring-security schema for 2.24.2 release

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-website] 01/01: Added Camel-spring-security schema for 2.24.2 release

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch spring-sec-2.24.2
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 0bdf1bdeaca59e7a2396bb85f4cdc271aadca493
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Sat Dec 28 15:11:18 2019 +0100

    Added Camel-spring-security schema for 2.24.2 release
---
 .../camel-spring-security-2.24.2.xsd               | 44 ++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/static/schema/spring-security/camel-spring-security-2.24.2.xsd b/static/schema/spring-security/camel-spring-security-2.24.2.xsd
new file mode 100644
index 0000000..c957144
--- /dev/null
+++ b/static/schema/spring-security/camel-spring-security-2.24.2.xsd
@@ -0,0 +1,44 @@
+<?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.
+-->
+<xsd:schema xmlns="http://camel.apache.org/schema/spring-security"
+  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+  xmlns:beans="http://www.springframework.org/schema/beans"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xmlns:camel-spring="http://camel.apache.org/schema/spring"
+  targetNamespace="http://camel.apache.org/schema/spring-security"
+  elementFormDefault="qualified"
+  attributeFormDefault="unqualified">
+
+  <xsd:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/>
+  <xsd:import namespace="http://camel.apache.org/schema/spring" schemaLocation="http://camel.apache.org/schema/spring/camel-spring.xsd"/>
+
+  <xsd:element name="authorizationPolicy">
+	  <xsd:complexType>
+	  	<xsd:attribute name="id" type="xsd:ID" use="required" />
+	  	<xsd:attribute name="access" type="xsd:string" />	  	
+	  	<xsd:attribute name="accessDecisionManager" type="xsd:string" />
+	  	<xsd:attribute name="authenticationAdapter" type="xsd:string" />
+	  	<xsd:attribute name="authenticationManager" type="xsd:string" />
+	  	<xsd:attribute name="useThreadSecurityContext" type="xsd:boolean" default="true"/>
+	  	<xsd:attribute name="alwaysReauthenticate" type="xsd:boolean" default="false"/>
+	  </xsd:complexType>
+  </xsd:element>
+  
+</xsd:schema>