WorkFlowEntityClasses.php 822 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 RADIUS_ACCESS = 'RadiusBundle\Entity\Access';
  16. const RADIUS_PROFILE = 'RadiusBundle\Entity\Profile';
  17. const BASE_CLIENT = 'ClientBundle\Entity\Client';
  18. const CABLEMODEM_CABLEMODEM = 'CablemodemBundle\Entity\Cablemodem';
  19. const DHCP_HOST = 'HostBundle\Entity\Host';
  20. const DHCP_POOL = 'IPv4Bundle\Entity\Pool';
  21. const DHCP_SUBNET = 'IPv4Bundle\Entity\SubNet';
  22. }