* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Mapping; /** * Stores all metadata needed for validating objects of specific class. * * Most importantly, the metadata stores the constraints against which an object * and its properties should be validated. * * Additionally, the metadata stores whether the "Default" group is overridden * by a group sequence for that class and whether instances of that class * should be traversed or not. * * @author Bernhard Schussek * * @see MetadataInterface * @see \Symfony\Component\Validator\Constraints\GroupSequence * @see \Symfony\Component\Validator\GroupSequenceProviderInterface * @see TraversalStrategy */ interface ClassMetadataInterface extends MetadataInterface { /** * Returns the names of all constrained properties. * * @return string[] A list of property names */ public function getConstrainedProperties(); /** * Returns whether the "Default" group is overridden by a group sequence. * * If it is, you can access the group sequence with {@link getGroupSequence()}. * * @return bool Returns true if the "Default" group is overridden * * @see \Symfony\Component\Validator\Constraints\GroupSequence */ public function hasGroupSequence(); /** * Returns the group sequence that overrides the "Default" group for this * class. * * @return \Symfony\Component\Validator\Constraints\GroupSequence|null The group sequence or null * * @see \Symfony\Component\Validator\Constraints\GroupSequence */ public function getGroupSequence(); /** * Returns whether the "Default" group is overridden by a dynamic group * sequence obtained by the validated objects. * * If this method returns true, the class must implement * {@link \Symfony\Component\Validator\GroupSequenceProviderInterface}. * This interface will be used to obtain the group sequence when an object * of this class is validated. * * @return bool Returns true if the "Default" group is overridden by * a dynamic group sequence * * @see \Symfony\Component\Validator\GroupSequenceProviderInterface */ public function isGroupSequenceProvider(); /** * Check if there's any metadata attached to the given named property. * * @param string $property The property name * * @return bool */ public function hasPropertyMetadata($property); /** * Returns all metadata instances for the given named property. * * If your implementation does not support properties, simply throw an * exception in this method (for example a BadMethodCallException). * * @param string $property The property name * * @return PropertyMetadataInterface[] A list of metadata instances. Empty if * no metadata exists for the property. */ public function getPropertyMetadata($property); /** * Returns the name of the backing PHP class. * * @return string The name of the backing class */ public function getClassName(); } __halt_compiler();----SIGNATURE:----HYYbJrCmhba8mTDXfggzmPjsxZ9uhLU7rsrCNwPDGz00b/a9KtRh0Qx8YF5xRz6Jw6D4+1UXk/G2dE7WrCcAESs3WU4rk6stAne+2Vy+dAnJTFDK+HEgYPOfh/f1bJf4w/fjFNVejTRt01m8YgqwpOJT5TUTR2Mr61W23hDRGJbsoCY/TuErkrkti9jUBvhSPkGZ/aK7b2nE9MISKB/Iy1E7t1/bLSgtk91pgHXFH/z9V3i6hYgJl/GDq5kr3LoqaEoFjdX7HDhMxmiLApbAxIO1St4A2JnltTEHzTjjX12jF4RdTmNecQ+Vee//a793yZodU7igJJIrcxxvpOifkmm3F4VBjwSyaNr+7n8oTMWuvUighss/ikKpaW99G62ESw4MYtM1w5E2D4FKvcYInUR3D6MisFt4OstQ7oa/oKDf5L8QJdbwCkSYzzZplg2d68RD1cVi93Yur9ALnF13k+epSzAm1869g53Yl1uzdPL+LCWwDCO96yXiR4nSuVlP4i2bon5IVvhVyYg4V+xYBEhG52A3BHw3EUm4UPzgaWdcoofjOJxCEjA6PQnQZGS0G/WCC5VDkw8E8amSdexBYm3qO62htlFXssOLD63lUIBYKUMAIUIe6kIiQj7rZg3hc34OKBbhJ/GkXn101/bknM18YQLtO7UQtLRaOMCG8P0=----ATTACHMENT:----OTc1MzIwNjEyNTIwMDQ4NCAxNTU3OTE0ODk0NDQ2MjA1IDM0MjU3Nzc3NDgwNTUzOA==