net6.0 Ready to test
This commit is contained in:
@ -2,4 +2,4 @@
|
||||
|
||||
public class BackboneComponent
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class BackboneStatusCache
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface ILoggingSetupManager
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class StatusItem
|
||||
{
|
||||
}
|
||||
}
|
@ -15,7 +15,7 @@ public class Backbone
|
||||
protected Backbone() { }
|
||||
|
||||
[NotNull]
|
||||
public static Backbone Instance { get; }
|
||||
public static Backbone? Instance { get; }
|
||||
[NotNull]
|
||||
public ILoggingSetupManager LoggingConfigurationManager { get; set; }
|
||||
public BackboneStatusCache Status { get; }
|
||||
@ -44,4 +44,4 @@ public class Backbone
|
||||
protected void CloseConnectionOfComponents(List<BackboneComponent> components) { }
|
||||
protected virtual void StopAllComponents() { }
|
||||
protected void StopComponents(List<BackboneComponent> components) { }
|
||||
}
|
||||
}
|
@ -18,4 +18,4 @@ public class EmailMessage
|
||||
public EmailMessage SetPriority(MailPriority priority) => throw new NotImplementedException();
|
||||
public EmailMessage SetSubject(string subject) => throw new NotImplementedException();
|
||||
|
||||
}
|
||||
}
|
@ -3,4 +3,4 @@
|
||||
public interface ISmtp
|
||||
{
|
||||
void Send(EmailMessage message);
|
||||
}
|
||||
}
|
@ -5,4 +5,4 @@ public enum MailPriority
|
||||
Low = 0,
|
||||
Normal = 1,
|
||||
High = 2
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class ChangeDataCollectionHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class DataCollectionRequest
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class EquipmentEvent
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class EquipmentException
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class EquipmentSelfDescription
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class GetParameterValuesHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IConnectionControl
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IDataTracingHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IEquipmentCommandService
|
||||
{
|
||||
}
|
||||
}
|
@ -12,4 +12,4 @@ public interface IEquipmentControl : IPackageSource
|
||||
IEquipmentCommandService Commands { get; }
|
||||
[NotNull]
|
||||
IConnectionControl Connection { get; }
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IEquipmentSelfDescriptionBuilder
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IPackage
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface ISelfDescriptionLookup
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IVirtualParameterValuesHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class SetParameterValuesHandler
|
||||
{
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public class TraceRequest
|
||||
{
|
||||
}
|
||||
}
|
@ -35,4 +35,4 @@ public interface IEquipmentDataCollection
|
||||
void TriggerTraceSample(TraceRequest traceRequest, long sampleId, IEnumerable<ParameterValue> parameters);
|
||||
void TriggerTraceSample(TraceRequest traceRequest, long sampleId, IEnumerable<ParameterValue> parameters, IPackage sourcePackage);
|
||||
void TriggerTraceSample(TraceRequest traceRequest, long sampleId, IEnumerable<ParameterValue> parameters, DateTime equipmentTimeStamp);
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IPackageSource
|
||||
{
|
||||
}
|
||||
}
|
@ -16,4 +16,4 @@ public class ParameterValue
|
||||
|
||||
public virtual ParameterValue Clone(EquipmentParameter newDefinition) => throw new NotImplementedException();
|
||||
public override string ToString() => base.ToString();
|
||||
}
|
||||
}
|
@ -19,4 +19,4 @@ public class EquipmentParameter
|
||||
|
||||
public override string ToString() => base.ToString();
|
||||
public string ToStringWithDetails() => base.ToString();
|
||||
}
|
||||
}
|
@ -8,4 +8,4 @@ public class Field
|
||||
public string Description { get; }
|
||||
public ParameterTypeDefinition TypeDefinition { get; }
|
||||
public bool CanBeNull { get; }
|
||||
}
|
||||
}
|
@ -8,4 +8,4 @@ public abstract class ParameterTypeDefinition
|
||||
public string Description { get; }
|
||||
|
||||
public override string ToString() => base.ToString();
|
||||
}
|
||||
}
|
@ -8,4 +8,4 @@ public class StructuredType : ParameterTypeDefinition
|
||||
public StructuredType(string name, string description, IList<Field> fields) : base(name, description) { }
|
||||
|
||||
public IList<Field> Fields { get; }
|
||||
}
|
||||
}
|
@ -2,4 +2,4 @@
|
||||
|
||||
public interface IConfigurationObject
|
||||
{
|
||||
}
|
||||
}
|
@ -22,4 +22,4 @@ public class ModelObjectParameterDefinition : IConfigurationObject
|
||||
|
||||
public virtual ModelObjectParameterDefinition? Clone() => null;
|
||||
public virtual bool IsValidValue(string value) => false;
|
||||
}
|
||||
}
|
@ -13,4 +13,4 @@ public enum ModelObjectParameterType
|
||||
Double = 8,
|
||||
Float = 9,
|
||||
Enum = 10
|
||||
}
|
||||
}
|
@ -40,4 +40,4 @@ public class SecsConnectionConfiguration
|
||||
public virtual TimeSpan T7ConnectionIdle { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual TimeSpan T8NetworkIntercharacter { get; set; }
|
||||
}
|
||||
}
|
@ -9,4 +9,4 @@ public class ConnectionSetting
|
||||
public string Name { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
@ -15,4 +15,4 @@ public class File
|
||||
|
||||
public File UpdateContentParameters(Dictionary<string, string> contentParameters) => throw new NotImplementedException();
|
||||
public File UpdateParsingStatus(bool isErrorFile) => throw new NotImplementedException();
|
||||
}
|
||||
}
|
@ -31,4 +31,4 @@ public class FilePathGenerator
|
||||
protected virtual string GetSubFolder(string folderPattern, string subFolderPath) => throw new NotImplementedException();
|
||||
protected virtual string PrepareFolderPath(string targetFolderPath, string subFolderPath) => throw new NotImplementedException();
|
||||
protected string ReplacePlaceholder(string inputPath) => throw new NotImplementedException();
|
||||
}
|
||||
}
|
@ -19,7 +19,7 @@ public class FileConnectorConfiguration
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public IfPostProcessingFailsEnum? IfPostProcessingFailsAction { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string AlternateTargetFolder { get; set; }
|
||||
public string? AlternateTargetFolder { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public long? FileHandleTimeout { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
@ -27,26 +27,26 @@ public class FileConnectorConfiguration
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public long? IdleEventWaitTimeInSeconds { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string FileAgeThreshold { get; set; }
|
||||
public string? FileAgeThreshold { get; set; }
|
||||
public bool? FolderAgeCheckIndividualSubFolders { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual ZipModeEnum? ZipMode { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public FileAgeFilterEnum? FileAgeFilterMode { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string ZipTargetFileName { get; set; }
|
||||
public string? ZipTargetFileName { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string ZipErrorTargetFileName { get; set; }
|
||||
public string? ZipErrorTargetFileName { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public long? ZipFileSubFolderLevel { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string DefaultPlaceHolderValue { get; set; }
|
||||
public string? DefaultPlaceHolderValue { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public bool? UseZip64Mode { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public List<ConnectionSetting> ConnectionSettings { get; set; }
|
||||
public string SourceDirectoryCloaking { get; set; }
|
||||
public string FolderAgeThreshold { get; set; }
|
||||
public List<ConnectionSetting>? ConnectionSettings { get; set; }
|
||||
public string? SourceDirectoryCloaking { get; set; }
|
||||
public string? FolderAgeThreshold { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual long? FileScanningIntervalInSeconds { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
@ -54,20 +54,20 @@ public class FileConnectorConfiguration
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual long? ZipFileTime { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string SourceFileLocation { get; set; }
|
||||
public string? SourceFileLocation { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string SourceFileFilter { get; set; }
|
||||
public List<string> SourceFileFilters { get; set; }
|
||||
public string? SourceFileFilter { get; set; }
|
||||
public List<string>? SourceFileFilters { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual bool? IncludeSubDirectories { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual FileScanningOptionEnum? FileScanningOption { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string TargetFileLocation { get; set; }
|
||||
public string? TargetFileLocation { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string ErrorTargetFileLocation { get; set; }
|
||||
public string? ErrorTargetFileLocation { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string TargetFileName { get; set; }
|
||||
public string? TargetFileName { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual long? FileHandleWaitTime { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
@ -83,7 +83,7 @@ public class FileConnectorConfiguration
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public virtual long? ZipFileAmount { get; set; }
|
||||
[System.Runtime.Serialization.DataMemberAttribute]
|
||||
public string ErrorTargetFileName { get; set; }
|
||||
public string? ErrorTargetFileName { get; set; }
|
||||
|
||||
public void Initialize() => throw new NotImplementedException();
|
||||
|
||||
@ -131,4 +131,4 @@ public class FileConnectorConfiguration
|
||||
IgnoreNewer = 0,
|
||||
IgnoreOlder = 1
|
||||
}
|
||||
}
|
||||
}
|
@ -10,4 +10,4 @@ public class FileConnectorParameterTypeDefinitionProvider
|
||||
|
||||
public IEnumerable<ParameterTypeDefinition>? GetAllParameterTypeDefinition() => null;
|
||||
public ParameterTypeDefinition? GetParameterTypeDefinition(string name) => null;
|
||||
}
|
||||
}
|
@ -6,4 +6,4 @@ namespace Library.PeerGroup.GCL.Annotations;
|
||||
public sealed class NotNullAttribute : Attribute
|
||||
{
|
||||
public NotNullAttribute() { }
|
||||
}
|
||||
}
|
@ -4,4 +4,4 @@ public enum HsmsConnectionMode
|
||||
{
|
||||
Active = 0,
|
||||
Passive = 1
|
||||
}
|
||||
}
|
@ -4,4 +4,4 @@ public enum HsmsSessionMode
|
||||
{
|
||||
MultiSession = 0,
|
||||
SingleSession = 1
|
||||
}
|
||||
}
|
@ -4,4 +4,4 @@ public enum SecsTransportType
|
||||
{
|
||||
HSMS = 0,
|
||||
Serial = 1
|
||||
}
|
||||
}
|
@ -12,4 +12,4 @@ public enum SerialBaudRate
|
||||
Baud38400 = 7,
|
||||
Baud57600 = 8,
|
||||
Baud115200 = 9
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user