Model/TagInterface.php
author cavaliet
Mon, 24 Oct 2011 19:08:04 +0200
changeset 12 81cc9274c20a
parent 5 45378793512a
child 14 673b2766024e
permissions -rwxr-xr-x
Update Tag alias.

<?php
/*
 * This file is part of the WikiTagBundle package.
 *
 * (c) IRI <http://www.iri.centrepompidou.fr/>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace IRI\Bundle\WikiTagBundle\Model;


interface TagInterface {
    
    /**
    * Get id
    *
    * @return integer
    */
    function getId();
    
    /**
     * Set label
     *
     * @param string $label
     */
    function setLabel($label);
    
    /**
     * Get label
     *
     * @return string
     */
    function getLabel();
    
    /**
     * Set normalizedLabel
     *
     * @param string $normalizedLabel
     */
    function setNormalizedLabel($normalizedLabel);
    
    /**
     * Get normalizedLabel
     *
     * @return string
     */
    function getNormalizedLabel();
    
    /**
     * Set originalLabel
     *
     * @param string $originalLabel
     */
    function setOriginalLabel($originalLabel);
    
    /**
     * Get originalLabel
     *
     * @return string
     */
    function getOriginalLabel();
    
    /**
     * Set alias
     *
     * @param string $alias
     */
    function setAlias($alias);
    
    /**
     * Get alias
     *
     * @return string
     */
    function getAlias();
    
    /**
     * Set wikipediaUrl
     *
     * @param string $wikipediaUrl
     */
    function setWikipediaUrl($wikipediaUrl);
    
    /**
     * Get wikipediaUrl
     *
     * @return string
     */
    function getWikipediaUrl();
    
    /**
     * Set wikipediaPageId
     *
     * @param bigint $wikipediaPageId
     */
    function setWikipediaPageId($wikipediaPageId);
    
    /**
     * Get wikipediaPageId
     *
     * @return bigint
     */
    function getWikipediaPageId();
    
    /**
     * Set urlStatus
     *
     * @param smallint $urlStatus
     */
    function setUrlStatus($urlStatus);
    
    /**
     * Get urlStatus
     *
     * @return smallint
     */
    function getUrlStatus();
    
    /**
    * Get UrlStatusText
    *
    * @return string
    */
    function getUrlStatusText();
    
    
    /**
     * Set dbpediaUri
     *
     * @param string $dbpediaUri
     */
    function setDbpediaUri($dbpediaUri);
    
    /**
     * Get dbpediaUri
     *
     * @return string
     */
    function getDbpediaUri();
    
    /**
     * Set popularity
     *
     * @param integer $popularity
     */
    function setPopularity($popularity);
    
    /**
     * Get popularity
     *
     * @return integer
     */
    function getPopularity();
    

    /**
    * Set category
    *
    * @param object $category
    */
    function setCategory($category);
    
    /**
     * Get category
     *
     * @return object
     */
    function getCategory();
    
    
}