WorkFlowEntityClasses.php 706 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace WorkflowBundle\Utils;
  3. /*
  4. * Se definen las entidades que poseen Workflow
  5. * Definir como:
  6. * const <NOMBRE_CONSTANTE> = '<Namespace\Entidad>';
  7. */
  8. class WorkFlowEntityClasses
  9. {
  10. use ChoiceTrait;
  11. const FTTH_ONU = 'FTTHBundle\Entity\ONU';
  12. const FTTH_OLT = 'FTTHBundle\Entity\OLT';
  13. const FTTH_PROFILE = 'FTTHBundle\Entity\Profile';
  14. const FTTH_NAS = 'RadiusBundle\Entity\NAS';
  15. const BASE_CLIENT = 'ClientBundle\Entity\Client';
  16. const CABLEMODEM_CABLEMODEM = 'CablemodemBundle\Entity\Cablemodem';
  17. const DHCP_HOST = 'HostBundle\Entity\Host';
  18. const DHCP_POOL = 'IPv4Bundle\Entity\Pool';
  19. const DHCP_SUBNET = 'IPv4Bundle\Entity\SubNet';
  20. }