openstackid/app/services/IUserActionService.php
smarcet 9abe4b2196 Implements: blueprint openid-oauth2-user-service
[smarcet] - #5029 - UserService

Change-Id: Ie4da1f28810e7562a9dc9ceb06228040848eebdf
2014-02-10 16:29:41 -03:00

16 lines
326 B
PHP

<?php
namespace services;
use openid\model\IOpenIdUser;
interface IUserActionService
{
const LoginAction = 'LOGIN';
const CancelLoginAction = 'CANCEL_LOGIN';
const LogoutAction = 'LOGOUT';
const ConsentAction = 'CONSENT';
public function addUserAction(IOpenIdUser $user, $ip, $action, $realm=null);
}