mirror of https://github.com/apache/archiva.git
remove some others Object parameters type
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1412690 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a8544147e1
commit
7d747e1b9f
|
@ -88,13 +88,13 @@ public class SecuritySystemStub
|
|||
return session;
|
||||
}
|
||||
|
||||
public AuthorizationResult authorize( SecuritySession arg0, Object arg1 )
|
||||
public AuthorizationResult authorize( SecuritySession arg0, String arg1 )
|
||||
throws AuthorizationException
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public AuthorizationResult authorize( SecuritySession arg0, Object arg1, Object arg2 )
|
||||
public AuthorizationResult authorize( SecuritySession arg0, String arg1, String arg2 )
|
||||
throws AuthorizationException
|
||||
{
|
||||
AuthorizationResult result = new AuthorizationResult( true, arg1, null );
|
||||
|
@ -560,13 +560,13 @@ public class SecuritySystemStub
|
|||
return false;
|
||||
}
|
||||
|
||||
public boolean isAuthorized( SecuritySession arg0, Object arg1 )
|
||||
public boolean isAuthorized( SecuritySession arg0, String arg1 )
|
||||
throws AuthorizationException
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
public boolean isAuthorized( SecuritySession arg0, Object arg1, Object arg2 )
|
||||
public boolean isAuthorized( SecuritySession arg0, String arg1, String arg2 )
|
||||
throws AuthorizationException
|
||||
{
|
||||
if ( repoIds.contains( arg2 ) )
|
||||
|
|
|
@ -67,13 +67,13 @@ public class BypassSecuritySystem
|
|||
return new DefaultSecuritySession( result );
|
||||
}
|
||||
|
||||
public AuthorizationResult authorize( SecuritySession session, Object permission )
|
||||
public AuthorizationResult authorize( SecuritySession session, String permission )
|
||||
throws AuthorizationException
|
||||
{
|
||||
return new AuthorizationResult( true, session.getUser(), null );
|
||||
}
|
||||
|
||||
public AuthorizationResult authorize( SecuritySession session, Object permission, Object resource )
|
||||
public AuthorizationResult authorize( SecuritySession session, String permission, String resource )
|
||||
throws AuthorizationException
|
||||
{
|
||||
return new AuthorizationResult( true, session.getUser(), null );
|
||||
|
@ -116,14 +116,14 @@ public class BypassSecuritySystem
|
|||
return true;
|
||||
}
|
||||
|
||||
public boolean isAuthorized( SecuritySession session, Object permission )
|
||||
public boolean isAuthorized( SecuritySession session, String permission )
|
||||
throws AuthorizationException
|
||||
{
|
||||
// Always true
|
||||
return true;
|
||||
}
|
||||
|
||||
public boolean isAuthorized( SecuritySession session, Object permission, Object resource )
|
||||
public boolean isAuthorized( SecuritySession session, String permission, String resource )
|
||||
throws AuthorizationException
|
||||
{
|
||||
// Always true
|
||||
|
|
Loading…
Reference in New Issue