-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/*************************************************** | ||
* | ||
* cismet GmbH, Saarbruecken, Germany | ||
* | ||
* ... and it just works. | ||
* | ||
****************************************************/ | ||
/* | ||
* To change this template, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package de.cismet.security; | ||
|
||
/** | ||
* DOCUMENT ME! | ||
* | ||
* @author thorsten | ||
* @version $Revision$, $Date$ | ||
*/ | ||
public interface Tunnel extends AccessHandler { | ||
|
||
//~ Methods ---------------------------------------------------------------- | ||
|
||
/** | ||
* DOCUMENT ME! | ||
* | ||
* @param method DOCUMENT ME! | ||
* @param url DOCUMENT ME! | ||
* | ||
* @return DOCUMENT ME! | ||
*/ | ||
boolean isResponsible(AccessHandler.ACCESS_METHODS method, String url); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/*************************************************** | ||
* | ||
* cismet GmbH, Saarbruecken, Germany | ||
* | ||
* ... and it just works. | ||
* | ||
****************************************************/ | ||
/* | ||
* To change this template, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package de.cismet.security; | ||
|
||
/** | ||
* DOCUMENT ME! | ||
* | ||
* @author thorsten | ||
* @version $Revision$, $Date$ | ||
*/ | ||
public interface TunnelStore { | ||
|
||
//~ Methods ---------------------------------------------------------------- | ||
|
||
/** | ||
* DOCUMENT ME! | ||
* | ||
* @param tunnel DOCUMENT ME! | ||
*/ | ||
void setTunnel(Tunnel tunnel); | ||
/** | ||
* DOCUMENT ME! | ||
* | ||
* @return DOCUMENT ME! | ||
*/ | ||
Tunnel getTunnel(); | ||
} |