Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Readers/PipingConfigurationReader.cs =================================================================== diff -u -r0af83c27af5046fdd700b8e03136cb468dd30e48 -rec54ae2880790e8111aef31be951080dd818a4fe --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Readers/PipingConfigurationReader.cs (.../PipingConfigurationReader.cs) (revision 0af83c27af5046fdd700b8e03136cb468dd30e48) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Readers/PipingConfigurationReader.cs (.../PipingConfigurationReader.cs) (revision ec54ae2880790e8111aef31be951080dd818a4fe) @@ -40,7 +40,7 @@ /// /// This class reads a piping configuration from XML and creates a collection of corresponding . /// - public class PipingConfigurationReader + internal class PipingConfigurationReader { private readonly XDocument xmlDocument; @@ -56,7 +56,7 @@ /// points to a file that does not pass the schema validation. /// /// - public PipingConfigurationReader(string xmlFilePath) + internal PipingConfigurationReader(string xmlFilePath) { IOUtils.ValidateFilePath(xmlFilePath); @@ -73,7 +73,7 @@ /// Reads the piping configuration from the XML and creates a collection of corresponding . /// /// A collection of read . - public IEnumerable Read() + internal IEnumerable Read() { return ParseReadPipingCalculationItems(xmlDocument.Root?.Elements()); } Index: Ringtoets/Piping/src/Ringtoets.Piping.IO/Schema/PipingConfigurationSchemaIdentifiers.cs =================================================================== diff -u -rf648a2ccf55c5a0f35eed517e3d2f6d9ded20ab7 -rec54ae2880790e8111aef31be951080dd818a4fe --- Ringtoets/Piping/src/Ringtoets.Piping.IO/Schema/PipingConfigurationSchemaIdentifiers.cs (.../PipingConfigurationSchemaIdentifiers.cs) (revision f648a2ccf55c5a0f35eed517e3d2f6d9ded20ab7) +++ Ringtoets/Piping/src/Ringtoets.Piping.IO/Schema/PipingConfigurationSchemaIdentifiers.cs (.../PipingConfigurationSchemaIdentifiers.cs) (revision ec54ae2880790e8111aef31be951080dd818a4fe) @@ -24,91 +24,91 @@ /// /// Container of identifiers related to the piping configuration schema definition. /// - public static class PipingConfigurationSchemaIdentifiers + internal static class PipingConfigurationSchemaIdentifiers { /// /// Gets the identifier for root elements. /// - public static string RootElement => "root"; + internal static string RootElement => "root"; /// /// Gets the identifier for calculation elements. /// - public static string CalculationElement => "berekening"; + internal static string CalculationElement => "berekening"; /// /// Gets the identifier for folder elements. /// - public static string FolderElement => "map"; + internal static string FolderElement => "map"; /// /// Gets the identifier for name attributes. /// - public static string NameAttribute => "naam"; + internal static string NameAttribute => "naam"; /// /// Gets the identifier for assessment level elements. /// - public static string AssessmentLevelElement => "toetspeil"; + internal static string AssessmentLevelElement => "toetspeil"; /// /// Gets the identifier for hydraulic boundary location elements. /// - public static string HydraulicBoundaryLocationElement => "hrlocatie"; + internal static string HydraulicBoundaryLocationElement => "hrlocatie"; /// /// Gets the identifier for surface line elements. /// - public static string SurfaceLineElement => "profielschematisatie"; + internal static string SurfaceLineElement => "profielschematisatie"; /// /// Gets the identifier for entry point elements. /// - public static string EntryPointElement => "intredepunt"; + internal static string EntryPointElement => "intredepunt"; /// /// Gets the identifier for exit point elements. /// - public static string ExitPointElement => "uittredepunt"; + internal static string ExitPointElement => "uittredepunt"; /// /// Gets the identifier for stochastic soil model elements. /// - public static string StochasticSoilModelElement => "ondergrondmodel"; + internal static string StochasticSoilModelElement => "ondergrondmodel"; /// /// Gets the identifier for stochastic soil profile elements. /// - public static string StochasticSoilProfileElement => "ondergrondschematisatie"; + internal static string StochasticSoilProfileElement => "ondergrondschematisatie"; /// /// Gets the identifier for stochasts elements. /// - public static string StochastsElement => "stochasten"; + internal static string StochastsElement => "stochasten"; /// /// Gets the identifier for stochast elements. /// - public static string StochastElement => "stochast"; + internal static string StochastElement => "stochast"; /// /// Gets the identifier for mean elements. /// - public static string MeanElement => "verwachtingswaarde"; + internal static string MeanElement => "verwachtingswaarde"; /// /// Gets the identifier for standard deviation elements. /// - public static string StandardDeviationElement => "standaardafwijking"; + internal static string StandardDeviationElement => "standaardafwijking"; /// /// Gets the identifier for the phreatic level exit stochast names. /// - public static string PhreaticLevelExitStochastName => "polderpeil"; + internal static string PhreaticLevelExitStochastName => "polderpeil"; /// /// Gets the identifier for the damping factor exit stochast names. /// - public static string DampingFactorExitStochastName => "dempingsfactor"; + internal static string DampingFactorExitStochastName => "dempingsfactor"; } } \ No newline at end of file