Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / dbal / lib / Doctrine / DBAL / Schema / SchemaConfig.php
1 <?php
2 /*
3  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14  *
15  * This software consists of voluntary contributions made by many individuals
16  * and is licensed under the MIT license. For more information, see
17  * <http://www.doctrine-project.org>.
18  */
19
20 namespace Doctrine\DBAL\Schema;
21
22 /**
23  * Configuration for a Schema
24  *
25  * 
26  * @link    www.doctrine-project.org
27  * @since   2.0
28  * @author  Benjamin Eberlei <kontakt@beberlei.de>
29  */
30 class SchemaConfig
31 {
32     /**
33      * @var bool
34      */
35     protected $hasExplicitForeignKeyIndexes = false;
36
37     /**
38      * @var int
39      */
40     protected $maxIdentifierLength = 63;
41
42     /**
43      * @var string
44      */
45     protected $name;
46
47     /**
48      * @var array
49      */
50     protected $defaultTableOptions = array();
51
52     /**
53      * @return bool
54      */
55     public function hasExplicitForeignKeyIndexes()
56     {
57         return $this->hasExplicitForeignKeyIndexes;
58     }
59
60     /**
61      * @param bool $flag
62      */
63     public function setExplicitForeignKeyIndexes($flag)
64     {
65         $this->hasExplicitForeignKeyIndexes = (bool)$flag;
66     }
67
68     /**
69      * @param int $length
70      */
71     public function setMaxIdentifierLength($length)
72     {
73         $this->maxIdentifierLength = (int)$length;
74     }
75
76     /**
77      * @return int
78      */
79     public function getMaxIdentifierLength()
80     {
81         return $this->maxIdentifierLength;
82     }
83
84     /**
85      * Get default namespace of schema objects.
86      *
87      * @return string
88      */
89     public function getName()
90     {
91         return $this->name;
92     }
93
94     /**
95      * set default namespace name of schema objects.
96      *
97      * @param string $name the value to set.
98      */
99     public function setName($name)
100     {
101         $this->name = $name;
102     }
103
104     /**
105      * Get the default options that are passed to Table instances created with
106      * Schema#createTable().
107      *
108      * @return array
109      */
110     public function getDefaultTableOptions()
111     {
112         return $this->defaultTableOptions;
113     }
114
115     public function setDefaultTableOptions(array $defaultTableOptions)
116     {
117         $this->defaultTableOptions = $defaultTableOptions;
118     }
119 }