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
f02a611f
Commit
f02a611f
authored
Oct 17, 2016
by
Francesco Chicchiriccò
Browse files
Minor refinements
parent
da683474
Changes
3
Hide whitespace changes
Inline
Side-by-side
sf-provision-data/src/main/java/eu/chorevolution/securityfilter/api/SecurityContext.java
View file @
f02a611f
/*
* Copyright 201
5
The CHOReVOLUTION project
* Copyright 201
6
The CHOReVOLUTION project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
...
...
sf-provision-data/src/main/java/eu/chorevolution/securityfilter/api/SecurityFilterConfiguration.java
View file @
f02a611f
/*
* Copyright 2016 The CHOReVOLUTION project
*
* Licensed 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.
*/
package
eu.chorevolution.securityfilter.api
;
public
class
SecurityFilterConfiguration
{
String
URL
;
public
String
getURL
()
{
return
URL
;
}
private
String
url
;
public
void
setURL
(
String
uRL
)
{
URL
=
uRL
;
}
public
String
getURL
()
{
return
url
;
}
public
void
setURL
(
String
url
)
{
this
.
url
=
url
;
}
}
sf-provision-data/src/main/java/eu/chorevolution/securityfilter/api/SecurityFilterManagement.java
View file @
f02a611f
...
...
@@ -59,13 +59,14 @@ public interface SecurityFilterManagement {
@Path
(
"securityContext"
)
@Consumes
({
MediaType
.
APPLICATION_JSON
})
void
securityContext
(
SecurityContext
securityContext
);
/**
* Push FederationServerURL
* @param URL FederationServerURL
* Push the FederationServer URL.
*
* @param config FederationServerURL
*/
@P
OS
T
@P
U
T
@Path
(
"federationServerURL"
)
@Consumes
({
MediaType
.
APPLICATION_JSON
})
public
void
federationServerURL
(
SecurityFilterConfiguration
config
);
void
federationServerURL
(
SecurityFilterConfiguration
config
);
}
Write
Preview
Markdown
is supported
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