<?php

/**
 * The business interface for the User Item class.
 * @package Todojsc
 */
interface Todojsc_Resource_User_Item_Interface
{
    /**
     * Gets the name of this user item.
     * @return The user's name
     */
    public function getName();
    
    /**
     * Gets the identifier of this user item.
     * @return The user's identifier
     */
    public function getIdentifier();
}
