Manufacturing_Descriptors.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. [Caption("Configure Manufacturing Panels")]
  6. public class CanConfigureManufacturingPanels : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  7. {
  8. }
  9. [Caption("View Factory Status Module")]
  10. public class CanViewFactoryStatus : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  11. {
  12. }
  13. [Caption("View Factory Allocation Module")]
  14. public class CanViewFactoryAllocation : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  15. {
  16. }
  17. [Caption("Distribute Packets")]
  18. public class CanDistributePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  19. {
  20. }
  21. [Caption("Manage Packet Status")]
  22. public class CanManageManufacturingPacketStatus : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  23. {
  24. }
  25. [Caption("View Factory Floor Module")]
  26. public class CanViewFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  27. {
  28. }
  29. [Caption("Configure Factory Floor")]
  30. public class CanConfigureFactoryFloor : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  31. {
  32. }
  33. [Caption("Manage Pending Packets")]
  34. public class CanManagePendingPackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  35. {
  36. }
  37. [Caption("View Ready-To-Go Module")]
  38. public class CanViewFactoryReadyToGo : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket, DeliveryItem>
  39. {
  40. }
  41. [Caption("Manage Factory Configuration")]
  42. public class CanViewFactorySettings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingFactory>
  43. {
  44. }
  45. [Caption("Track Manufacturing History")]
  46. public class CanTrackManufacturingHistory : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingHistory>
  47. {
  48. }
  49. [Caption("Save Drawings from Factory Floor Screen")]
  50. public class CanSaveFactoryFloorDrawings : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  51. {
  52. }
  53. [Caption("Can Issue Packets To Factory")]
  54. public class CanIssuePackets : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  55. {
  56. }
  57. [Caption("Can View Manufacturing Module On Mobile")]
  58. public class CanViewManufacturingOnMobile : EnabledSecurityDescriptor<ManufacturingLicense, ManufacturingPacket>
  59. {
  60. }
  61. }