summaryrefslogtreecommitdiffstats
path: root/Acl/Model/FieldAwareEntryInterface.php
diff options
context:
space:
mode:
authorJohannes Schmitt <schmittjoh@gmail.com>2010-12-14 16:43:40 +0100
committerFabien Potencier <fabien.potencier@gmail.com>2010-12-31 09:25:53 +0100
commit3bd275eddbee11dbc787eecf73c3b62fce815cbc (patch)
treee1e5727a201fb4b420a28ebb1cbec9ddd0ce1448 /Acl/Model/FieldAwareEntryInterface.php
parent5853e1f130f888bfe2e5e5830ed930218cfe693b (diff)
downloadsymfony-security-3bd275eddbee11dbc787eecf73c3b62fce815cbc.zip
symfony-security-3bd275eddbee11dbc787eecf73c3b62fce815cbc.tar.gz
symfony-security-3bd275eddbee11dbc787eecf73c3b62fce815cbc.tar.bz2
added ACL system to the Security Component
Diffstat (limited to 'Acl/Model/FieldAwareEntryInterface.php')
-rw-r--r--Acl/Model/FieldAwareEntryInterface.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/Acl/Model/FieldAwareEntryInterface.php b/Acl/Model/FieldAwareEntryInterface.php
new file mode 100644
index 0000000..545aa44
--- /dev/null
+++ b/Acl/Model/FieldAwareEntryInterface.php
@@ -0,0 +1,22 @@
+<?php
+
+namespace Symfony\Component\Security\Acl\Model;
+
+/*
+ * This file is part of the Symfony framework.
+ *
+ * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
+ *
+ * This source file is subject to the MIT license that is bundled
+ * with this source code in the file LICENSE.
+ */
+
+/**
+ * Interface for entries which are restricted to specific fields
+ *
+ * @author Johannes M. Schmitt <schmittjoh@gmail.com>
+ */
+interface FieldAwareEntryInterface
+{
+ function getField();
+} \ No newline at end of file