2015-08-17 17:00:26 -07:00
< ? php
/*
* This file is part of the Symfony package .
*
* ( c ) Fabien Potencier < fabien @ symfony . com >
*
* For the full copyright and license information , please view the LICENSE
* file that was distributed with this source code .
*/
namespace Symfony\Component\Validator ;
use Doctrine\Common\Annotations\Reader ;
use Symfony\Component\Translation\TranslatorInterface ;
use Symfony\Component\Validator\Mapping\Cache\CacheInterface ;
2018-11-23 12:29:20 +00:00
use Symfony\Component\Validator\Mapping\Factory\MetadataFactoryInterface ;
use Symfony\Component\Validator\Validator\ValidatorInterface ;
2015-08-17 17:00:26 -07:00
/**
* A configurable builder for ValidatorInterface objects .
*
* @ author Bernhard Schussek < bschussek @ gmail . com >
*/
interface ValidatorBuilderInterface
{
/**
* Adds an object initializer to the validator .
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addObjectInitializer ( ObjectInitializerInterface $initializer );
/**
* Adds a list of object initializers to the validator .
*
2018-11-23 12:29:20 +00:00
* @ param ObjectInitializerInterface [] $initializers
2015-08-17 17:00:26 -07:00
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addObjectInitializers ( array $initializers );
/**
* Adds an XML constraint mapping file to the validator .
*
* @ param string $path The path to the mapping file
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addXmlMapping ( $path );
/**
* Adds a list of XML constraint mapping files to the validator .
*
2018-11-23 12:29:20 +00:00
* @ param string [] $paths The paths to the mapping files
2015-08-17 17:00:26 -07:00
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addXmlMappings ( array $paths );
/**
* Adds a YAML constraint mapping file to the validator .
*
* @ param string $path The path to the mapping file
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addYamlMapping ( $path );
/**
* Adds a list of YAML constraint mappings file to the validator .
*
2018-11-23 12:29:20 +00:00
* @ param string [] $paths The paths to the mapping files
2015-08-17 17:00:26 -07:00
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addYamlMappings ( array $paths );
/**
* Enables constraint mapping using the given static method .
*
* @ param string $methodName The name of the method
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addMethodMapping ( $methodName );
/**
* Enables constraint mapping using the given static methods .
*
2018-11-23 12:29:20 +00:00
* @ param string [] $methodNames The names of the methods
2015-08-17 17:00:26 -07:00
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function addMethodMappings ( array $methodNames );
/**
* Enables annotation based constraint mapping .
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function enableAnnotationMapping ( Reader $annotationReader = null );
/**
* Disables annotation based constraint mapping .
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function disableAnnotationMapping ();
/**
* Sets the class metadata factory used by the validator .
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function setMetadataFactory ( MetadataFactoryInterface $metadataFactory );
/**
* Sets the cache for caching class metadata .
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function setMetadataCache ( CacheInterface $cache );
/**
* Sets the constraint validator factory used by the validator .
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function setConstraintValidatorFactory ( ConstraintValidatorFactoryInterface $validatorFactory );
/**
* Sets the translator used for translating violation messages .
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function setTranslator ( TranslatorInterface $translator );
/**
* Sets the default translation domain of violation messages .
*
* The same message can have different translations in different domains .
* Pass the domain that is used for violation messages by default to this
* method .
*
* @ param string $translationDomain The translation domain of the violation messages
*
2017-02-02 16:28:38 -08:00
* @ return $this
2015-08-17 17:00:26 -07:00
*/
public function setTranslationDomain ( $translationDomain );
/**
* Builds and returns a new validator object .
*
2017-02-02 16:28:38 -08:00
* @ return ValidatorInterface The built validator
2015-08-17 17:00:26 -07:00
*/
public function getValidator ();
}