/// <summary>
 /// Initializes a new instance of the <see cref="ProjectTrigger"/> class.
 /// </summary>
 /// <param name="factory">The factory.</param>
 public ProjectTrigger(ICruiseServerClientFactory factory)
 {
     this.factory          = factory;
     this.ServerUri        = DefaultServerUri;
     this.TriggerStatus    = IntegrationStatus.Success;
     this.InnerTrigger     = ProjectTrigger.NewIntervalTrigger();
     this.TriggerFirstTime = false;
 }