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/27 14:08:50 UTC

[camel-website] branch spring-security-2.24.3 updated (c7a9400 -> 450f0de)

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

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


 discard c7a9400  Added Camel-Spring-security schema for 2.24.3 release
     add d6270b1  Merge pull request #135 from apache/blueprint-2.24.3
     new 450f0de  Added Camel-Spring-security schema for 2.24.3 release

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c7a9400)
            \
             N -- N -- N   refs/heads/spring-security-2.24.3 (450f0de)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:


[camel-website] 01/01: Added Camel-Spring-security schema for 2.24.3 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-security-2.24.3
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 450f0ded3fdcc0d1e6aa3232a18b848212bd6125
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Dec 27 15:06:38 2019 +0100

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

diff --git a/static/schema/spring-security/camel-spring-security-2.24.3.xsd b/static/schema/spring-security/camel-spring-security-2.24.3.xsd
new file mode 100644
index 0000000..c957144
--- /dev/null
+++ b/static/schema/spring-security/camel-spring-security-2.24.3.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>