~chroot64bit/zivios/gentoo-experimental

« back to all changes in this revision

Viewing changes to application/library/Zend/InfoCard/Adapter/Interface.php

  • Committer: Mustafa A. Hashmi
  • Date: 2008-12-04 13:32:21 UTC
  • Revision ID: mhashmi@zivios.org-20081204133221-0nd1trunwevijj38
Inclusion of new installation framework with ties to zend layout and dojo layout

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Zend Framework
 
4
 *
 
5
 * LICENSE
 
6
 *
 
7
 * This source file is subject to the new BSD license that is bundled
 
8
 * with this package in the file LICENSE.txt.
 
9
 * It is also available through the world-wide-web at this URL:
 
10
 * http://framework.zend.com/license/new-bsd
 
11
 * If you did not receive a copy of the license and are unable to
 
12
 * obtain it through the world-wide-web, please send an email
 
13
 * to license@zend.com so we can send you a copy immediately.
 
14
 *
 
15
 * @category   Zend
 
16
 * @package    Zend_InfoCard
 
17
 * @subpackage Zend_InfoCard_Adapter
 
18
 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
 
19
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 
20
 * @version    $Id: Interface.php 9094 2008-03-30 18:36:55Z thomas $
 
21
 */
 
22
 
 
23
/**
 
24
 * The interface required by all Zend_InfoCard Adapter classes to implement. It represents
 
25
 * a series of callback methods used by the component during processing of an information card
 
26
 *
 
27
 * @category   Zend
 
28
 * @package    Zend_InfoCard_Adapter
 
29
 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
 
30
 * @license    http://framework.zend.com/license/new-bsd     New BSD License
 
31
 */
 
32
interface Zend_InfoCard_Adapter_Interface
 
33
{
 
34
    /**
 
35
     * Store the assertion's claims in persistent storage
 
36
     *
 
37
     * @param string $assertionURI The assertion type URI
 
38
     * @param string $assertionID The specific assertion ID
 
39
     * @param array $conditions An array of claims to store associated with the assertion
 
40
     * @return bool True on success, false on failure
 
41
     */
 
42
    public function storeAssertion($assertionURI, $assertionID, $conditions);
 
43
 
 
44
    /**
 
45
     * Retrieve the claims of a given assertion from persistent storage
 
46
     *
 
47
     * @param string $assertionURI The assertion type URI
 
48
     * @param string $assertionID The assertion ID to retrieve
 
49
     * @return mixed False if the assertion ID was not found for that URI, or an array of
 
50
     *               conditions associated with that assertion if found in the same format
 
51
     *                  provided
 
52
     */
 
53
    public function retrieveAssertion($assertionURI, $assertionID);
 
54
 
 
55
    /**
 
56
     * Remove the claims of a given assertion from persistent storage
 
57
     *
 
58
     * @param string $asserionURI The assertion type URI
 
59
     * @param string $assertionID The assertion ID to remove
 
60
     * @return bool True on success, false on failure
 
61
     */
 
62
    public function removeAssertion($asserionURI, $assertionID);
 
63
}