--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/Model/TagInterface.php Sun Oct 16 14:50:48 2011 +0200
@@ -0,0 +1,150 @@
+<?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();
+
+ /**
+ * 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();
+
+
+}
\ No newline at end of file