openstackid/app/models/OpenIdAssociation.php

67 lines
1.3 KiB
PHP

<?php
/**
* Created by JetBrains PhpStorm.
* User: smarcet
* Date: 10/17/13
* Time: 6:08 PM
* To change this template use File | Settings | File Templates.
*/
use openid\model\IAssociation;
class OpenIdAssociation extends Eloquent implements IAssociation{
public function getMacFunction()
{
// TODO: Implement getMacFunction() method.
}
public function setMacFunction($mac_function)
{
// TODO: Implement setMacFunction() method.
}
public function getSecret()
{
// TODO: Implement getSecret() method.
}
public function setSecret($secret)
{
// TODO: Implement setSecret() method.
}
public function getLifetime()
{
// TODO: Implement getLifetime() method.
}
public function setLifetime($lifetime)
{
// TODO: Implement setLifetime() method.
}
public function getIssued()
{
// TODO: Implement getIssued() method.
}
public function setIssued($issued)
{
// TODO: Implement setIssued() method.
}
public function getType()
{
// TODO: Implement getType() method.
}
public function setType($type)
{
// TODO: Implement setType() method.
}
public function IsExpired()
{
// TODO: Implement IsExpired() method.
}
}