IIntegrationResult.cs :  » Build-Systems » CruiseControl.NET » ThoughtWorks » CruiseControl » Core » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Build Systems » CruiseControl.NET 
CruiseControl.NET » ThoughtWorks » CruiseControl » Core » IIntegrationResult.cs
using System;
using System.Collections;
using System.Collections.Generic;
using ThoughtWorks.CruiseControl.Remote;
using System.Xml;

namespace ThoughtWorks.CruiseControl.Core{
  public interface IIntegrationResult
  {
    // Project configuration properties
    string ProjectName { get; }
    string ProjectUrl { get; set;}
    string WorkingDirectory { get; set; }
    string ArtifactDirectory { get; set;}
    string BaseFromArtifactsDirectory(string pathToBase);
    string BaseFromWorkingDirectory(string pathToBase);
        string BuildLogDirectory { get; set;}   

        /// <summary>
        ///  The parameters used.
        /// </summary>
        List<NameValuePair> Parameters { get; set; }

    // Current integration state
    BuildCondition BuildCondition { get; }
    string Label { get; set; }
    IntegrationStatus Status { get; set; }
    DateTime StartTime { get; set; }
    DateTime EndTime { get; }
    TimeSpan TotalIntegrationTime { get; }
    bool Failed { get; }
    bool Fixed { get; }
    bool Succeeded { get; }
    void MarkStartTime();
    void MarkEndTime();
    bool IsInitial();
    IntegrationRequest IntegrationRequest { get; }
        
    IntegrationStatus LastIntegrationStatus { get; }
        // Users who contributed modifications to a series of failing builds:
        ArrayList FailureUsers { get; }             // This should really be a Set but sets are not available in .NET 1.1
    DateTime LastModificationDate { get; }
    string LastChangeNumber { get; }
    IntegrationSummary LastIntegration { get; }

    // Last successful integration state
    string LastSuccessfulIntegrationLabel { get; }

    // Current integration artifacts
    IList TaskResults { get; }
    Modification[] Modifications { get; set; }
    Exception ExceptionResult { get; set; }
    string TaskOutput { get; }
    void AddTaskResult(string result);
        void AddTaskResult(ITaskResult result);
    bool HasModifications();
    bool ShouldRunBuild();

        /// <summary>
        /// Any error that occurred during the get modifications stage of source control.
        /// </summary>
        /// <remarks>
        /// If there is no error then this property will be null.
        /// </remarks>
        Exception SourceControlError { get; set; }

        #region HasSourceControlError
        /// <summary>
        /// Gets or sets a value indicating whether there was a source control error.
        /// </summary>
        bool HasSourceControlError { get; }
        #endregion

        #region LastBuildStatus
        /// <summary>
        /// The last status from a build that progressed pass any source control checks.
        /// </summary>
        IntegrationStatus LastBuildStatus { get; set; }
        #endregion

        IDictionary IntegrationProperties { get; }
        Util.BuildProgressInformation BuildProgressInformation { get; }

        #region Clone()
        /// <summary>
        /// Clones this integration result.
        /// </summary>
        /// <returns>Returns a clone of the result.</returns>
        IIntegrationResult Clone();
        #endregion

        #region Merge()
        /// <summary>
        /// Merges another result.
        /// </summary>
        /// <param name="value">The result to merge.</param>
        void Merge(IIntegrationResult value);
        #endregion

        #region SourceControlData
        /// <summary>
        /// Extended source control data.
        /// </summary>
        /// <remarks>
        /// It is up to the individual source control providers to decide what to store in here.
        /// </remarks>
        List<NameValuePair> SourceControlData { get; }
        #endregion
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.