/// <summary> Constructor for a new instance of the Engine_VerbMapping class </summary>
 /// <param name="Method"> Method within the class specified by the component that should be called to fulfil the request </param>
 /// <param name="Enabled"> Flag indicates if this endpoint is enabled or disabled </param>
 /// <param name="Protocol"> Protocol which this endpoint utilizes ( JSON or Protocol Buffer ) </param>
 /// <param name="RequestType"> Request type expected for this endpoint ( either a GET or a POST ) </param>
 public Engine_VerbMapping(string Method, bool Enabled, Microservice_Endpoint_Protocol_Enum Protocol, Microservice_Endpoint_RequestType_Enum RequestType)
 {
     this.Method = Method;
     this.Enabled = Enabled;
     this.Protocol = Protocol;
     this.RequestType = RequestType;
 }
 /// <summary> Constructor for a new instance of the Engine_VerbMapping class </summary>
 /// <param name="Method"> Method within the class specified by the component that should be called to fulfil the request </param>
 /// <param name="Enabled"> Flag indicates if this endpoint is enabled or disabled </param>
 /// <param name="Protocol"> Protocol which this endpoint utilizes ( JSON or Protocol Buffer ) </param>
 /// <param name="RequestType"> Request type expected for this endpoint ( either a GET or a POST ) </param>
 public Engine_VerbMapping(string Method, bool Enabled, Microservice_Endpoint_Protocol_Enum Protocol, Microservice_Endpoint_RequestType_Enum RequestType, string ComponentId, string RestrictionRangeId )
 {
     this.Method = Method;
     this.Enabled = Enabled;
     this.Protocol = Protocol;
     this.RequestType = RequestType;
     this.ComponentId = ComponentId;
     this.RestrictionRangeSetId = RestrictionRangeId;
 }
Esempio n. 3
0
 /// <summary> Constructor for a new instance of the Engine_VerbMapping class </summary>
 /// <param name="Method"> Method within the class specified by the component that should be called to fulfil the request </param>
 /// <param name="Enabled"> Flag indicates if this endpoint is enabled or disabled </param>
 /// <param name="Protocol"> Protocol which this endpoint utilizes ( JSON or Protocol Buffer ) </param>
 /// <param name="RequestType"> Request type expected for this endpoint ( either a GET or a POST ) </param>
 public Engine_VerbMapping(string Method, bool Enabled, Microservice_Endpoint_Protocol_Enum Protocol, Microservice_Endpoint_RequestType_Enum RequestType)
 {
     this.Method      = Method;
     this.Enabled     = Enabled;
     this.Protocol    = Protocol;
     this.RequestType = RequestType;
 }
Esempio n. 4
0
 /// <summary> Constructor for a new instance of the Engine_VerbMapping class </summary>
 /// <param name="Method"> Method within the class specified by the component that should be called to fulfil the request </param>
 /// <param name="Enabled"> Flag indicates if this endpoint is enabled or disabled </param>
 /// <param name="Protocol"> Protocol which this endpoint utilizes ( JSON or Protocol Buffer ) </param>
 /// <param name="RequestType"> Request type expected for this endpoint ( either a GET or a POST ) </param>
 public Engine_VerbMapping(string Method, bool Enabled, Microservice_Endpoint_Protocol_Enum Protocol, Microservice_Endpoint_RequestType_Enum RequestType, string ComponentId, string RestrictionRangeId)
 {
     this.Method                = Method;
     this.Enabled               = Enabled;
     this.Protocol              = Protocol;
     this.RequestType           = RequestType;
     this.ComponentId           = ComponentId;
     this.RestrictionRangeSetId = RestrictionRangeId;
 }