FullUserValidator.cs
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OThinker.H3.Portal
  5. {
  6.     [System.Serializable]
  7.     public class FullUserValidator : UserValidator
  8.     {
  9.         public FullUserValidator(string UserID)
  10.             :
  11.             base(UserID)
  12.         {
  13.         }
  14.         public override bool ValidateAdministrator()
  15.         {
  16.             return true;
  17.         }
  18.         public override bool ValidatePublishWorkflow()
  19.         {
  20.             return true;
  21.         }
  22.         public override bool ValidateViewReport()
  23.         {
  24.             return true;
  25.         }
  26.         public override bool ValidateWorkflowAdministrator(string WorkflowPackage, string WorkflowName)
  27.         {
  28.             return true;
  29.         }
  30.         public override bool ValidateCreateInstance(string WorkflowPackage, string WorkflowName)
  31.         {
  32.             return true;
  33.         }
  34.         public override bool ValidateInstanceAdministrator(string InstanceId)
  35.         {
  36.             return true;
  37.         }
  38.         public override bool ValidateInstanceView(string InstanceId)
  39.         {
  40.             return true;
  41.         }
  42.     }
  43. }