Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CHOReVOLUTION
security-filter
Commits
1a8c056d
Commit
1a8c056d
authored
Oct 12, 2016
by
frederic motte
Browse files
remove domain from security model
parent
0666ab68
Changes
6
Hide whitespace changes
Inline
Side-by-side
Security-filter-gen/POIService.security
View file @
1a8c056d
<?xml version="1.0" encoding="UTF-8"?>
<security:SecurityModel
xmi:version=
"2.0"
xmlns:xmi=
"http://www.omg.org/XMI"
xmlns:security=
"http://www.thalesgroup.com/chorevolution/spec/security"
>
<securitypolicyset
name=
"SecurityPolicy"
domainName=
"domain2"
serviceName=
"POI"
>
<securitypolicyset
name=
"SecurityPolicy"
serviceName=
"POI"
>
<authentication
name=
"authentication"
/>
<communication
name=
"communication"
SecuredCommunication=
"false"
/>
</securitypolicyset>
...
...
Security-filter-gen/SecModelGenAccountWithCred.security
View file @
1a8c056d
<?xml version="1.0" encoding="UTF-8"?>
<security:SecurityModel
xmi:version=
"2.0"
xmlns:xmi=
"http://www.omg.org/XMI"
xmlns:security=
"http://www.thalesgroup.com/chorevolution/spec/security"
>
<securitypolicyset
name=
"SecurityPolicy"
domainName=
"domain2"
serviceName=
"service1"
>
<securitypolicyset
name=
"SecurityPolicy"
serviceName=
"service1"
>
<authentication
name=
"authentication"
AuthNTypeForwarded=
"GenericAccount"
genericAccount=
"account"
genericCredential=
"password"
/>
<communication
name=
"communication"
SecuredCommunication=
"true"
/>
</securitypolicyset>
...
...
Security-filter-gen/SecModelGenAccountWithoutCred.security
View file @
1a8c056d
<?xml version="1.0" encoding="UTF-8"?>
<security:SecurityModel
xmi:version=
"2.0"
xmlns:xmi=
"http://www.omg.org/XMI"
xmlns:security=
"http://www.thalesgroup.com/chorevolution/spec/security"
>
<securitypolicyset
name=
"SecurityPolicy"
domainName=
"domain2"
serviceName=
"service1"
>
<securitypolicyset
name=
"SecurityPolicy"
serviceName=
"service1"
>
<authentication
name=
"authentication"
AuthNTypeForwarded=
"GenericAccount"
/>
<communication
name=
"communication"
SecuredCommunication=
"true"
/>
</securitypolicyset>
...
...
Security-filter-gen/SecModelUserAccount.security
View file @
1a8c056d
<?xml version="1.0" encoding="UTF-8"?>
<security:SecurityModel
xmi:version=
"2.0"
xmlns:xmi=
"http://www.omg.org/XMI"
xmlns:security=
"http://www.thalesgroup.com/chorevolution/spec/security"
>
<securitypolicyset
name=
"SecurityPolicy"
domainName=
"domain2"
serviceName=
"sc3"
>
<securitypolicyset
name=
"SecurityPolicy"
serviceName=
"sc3"
>
<authentication
name=
"authentication"
/>
<communication
name=
"communication"
SecuredCommunication=
"false"
/>
</securitypolicyset>
...
...
Security-filter-gen/TrafficInformationService.security
View file @
1a8c056d
<?xml version="1.0" encoding="UTF-8"?>
<security:SecurityModel
xmi:version=
"2.0"
xmlns:xmi=
"http://www.omg.org/XMI"
xmlns:security=
"http://www.thalesgroup.com/chorevolution/spec/security"
>
<securitypolicyset
name=
"SecurityPolicy"
domainName=
"domain2"
serviceName=
"TrafficInformation"
>
<securitypolicyset
name=
"SecurityPolicy"
serviceName=
"TrafficInformation"
>
<authentication
name=
"authentication"
AuthNTypeForwarded=
"GenericAccount"
/>
<communication
name=
"communication"
SecuredCommunication=
"true"
/>
</securitypolicyset>
...
...
Security-filter-impl/src/main/webapp/WEB-INF/policy.xml
deleted
100644 → 0
View file @
0666ab68
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Policy
PolicyId=
"policyID"
Version=
"2.0"
RuleCombiningAlgId=
"urn:oasis:names:tc:xacml:3.0:rule-combining-algorithm:deny-unless-permit"
xmlns=
"urn:oasis:names:tc:xacml:3.0:core:schema:wd-17"
>
<Description>
description
</Description>
<Target/>
<Rule
RuleId=
"ruleID"
Effect=
"Permit"
>
<Description>
description
</Description>
<Target>
<AnyOf>
<AllOf>
<Match
MatchId=
"urn:oasis:names:tc:xacml:1.0:function:string-equal"
>
<AttributeValue
DataType=
"http://www.w3.org/2001/XMLSchema#string"
>
test1
</AttributeValue>
<AttributeDesignator
Category=
"urn:oasis:names:tc:xacml:1.0:subject-category:access-subject"
AttributeId=
"group"
DataType=
"http://www.w3.org/2001/XMLSchema#string"
MustBePresent=
"false"
/>
</Match>
</AllOf>
<AllOf>
<Match
MatchId=
"urn:oasis:names:tc:xacml:1.0:function:string-equal"
>
<AttributeValue
DataType=
"http://www.w3.org/2001/XMLSchema#string"
>
test2
</AttributeValue>
<AttributeDesignator
Category=
"urn:oasis:names:tc:xacml:1.0:subject-category:access-subject"
AttributeId=
"group"
DataType=
"http://www.w3.org/2001/XMLSchema#string"
MustBePresent=
"false"
/>
</Match>
</AllOf>
<AllOf>
<Match
MatchId=
"urn:oasis:names:tc:xacml:1.0:function:string-equal"
>
<AttributeValue
DataType=
"http://www.w3.org/2001/XMLSchema#string"
>
group2
</AttributeValue>
<AttributeDesignator
Category=
"urn:oasis:names:tc:xacml:1.0:subject-category:access-subject"
AttributeId=
"group"
DataType=
"http://www.w3.org/2001/XMLSchema#string"
MustBePresent=
"false"
/>
</Match>
</AllOf>
</AnyOf>
</Target>
</Rule>
</Policy>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment