<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>INameDb on sillysky.net</title>
    <link>https://sillysky.net/docs/nyssr/logging/inamedb/</link>
    <description>Recent content in INameDb on sillysky.net</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Tue, 14 Oct 2025 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://sillysky.net/docs/nyssr/logging/inamedb/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>IGeneralIdDatabase</title>
      <link>https://sillysky.net/docs/nyssr/logging/inamedb/igeneraliddatabase/</link>
      <pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://sillysky.net/docs/nyssr/logging/inamedb/igeneraliddatabase/</guid>
      <description>&lt;p&gt;This service provides a descriptive name for general &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IDs&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;h2 id=&#34;get-the-service&#34;&gt;Get the service&lt;/h2&gt;&#xA;&lt;p&gt;The service is provided by the &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/&#34;&gt;name database&lt;/a&gt; using a getter method.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;final &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/igeneraliddatabase/&#34;&gt;IGeneralIdDatabase&lt;/a&gt; db = nameDb.getGeneralIdDatabase();&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;store-an-id&#34;&gt;Store an ID&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void putName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IId&lt;/a&gt; aId,&#xA;             @NotNull String aName);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;remove-an-id&#34;&gt;Remove an ID&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void removeName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IId&lt;/a&gt; aId);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;get-a-name&#34;&gt;Get a name&lt;/h2&gt;&#xA;&lt;p&gt;If the ID does not exist in the map, the ID itself will be returned as String.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;@NotNull String getName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IId&lt;/a&gt; aId);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;If the ID does not exist in the map, &lt;code&gt;null&lt;/code&gt; is returned.&lt;/p&gt;</description>
    </item>
    <item>
      <title>IRecordIdDatabase</title>
      <link>https://sillysky.net/docs/nyssr/logging/inamedb/irecordiddatabase/</link>
      <pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://sillysky.net/docs/nyssr/logging/inamedb/irecordiddatabase/</guid>
      <description>&lt;p&gt;This service provides a descriptive name for &lt;a href=&#34;https://sillysky.net/docs/nyssr/messages/crecord/&#34;&gt;record&lt;/a&gt; &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IDs&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;h2 id=&#34;get-the-service&#34;&gt;Get the service&lt;/h2&gt;&#xA;&lt;p&gt;The service is provided by the &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/&#34;&gt;name database&lt;/a&gt; using a getter method.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;final &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/irecordiddatabase/&#34;&gt;IRecordIdDatabase&lt;/a&gt; db = nameDb.getRecordIdDatabase();&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;store-an-id&#34;&gt;Store an ID&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void putName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IId&lt;/a&gt; aId,&#xA;             @NotNull String aName);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;remove-an-id&#34;&gt;Remove an ID&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void removeName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IId&lt;/a&gt; aId);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;get-a-name&#34;&gt;Get a name&lt;/h2&gt;&#xA;&lt;p&gt;If the ID does not exist in the map, the ID itself will be returned as String.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;@NotNull String getName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/id/&#34;&gt;IId&lt;/a&gt; aId);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;If the ID does not exist in the map, &lt;code&gt;null&lt;/code&gt; is returned.&lt;/p&gt;</description>
    </item>
    <item>
      <title>IResultCodeDatabase</title>
      <link>https://sillysky.net/docs/nyssr/logging/inamedb/iresultcodedatabase/</link>
      <pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://sillysky.net/docs/nyssr/logging/inamedb/iresultcodedatabase/</guid>
      <description>&lt;p&gt;This service provides a descriptive name for &lt;a href=&#34;https://sillysky.net/docs/nyssr/messages/cenvelope/cresult/&#34;&gt;result codes&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;h2 id=&#34;get-the-service&#34;&gt;Get the service&lt;/h2&gt;&#xA;&lt;p&gt;The service is provided by the &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/&#34;&gt;name database&lt;/a&gt; using a getter method.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;final &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/iresultcodedatabase/&#34;&gt;IResultCodeDatabase&lt;/a&gt; db = nameDb.getResultCodeDatabase();&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;store-a-result-code&#34;&gt;Store a result code&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void putName(int aResultCode,&#xA;             @NotNull String aName);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;remove-a-result-code&#34;&gt;Remove a result code&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void removeName(int aResultCode);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;get-a-name&#34;&gt;Get a name&lt;/h2&gt;&#xA;&lt;p&gt;If the code does not exist in the map, the code itself will be returned as&#xA;String.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;@NotNull String getName(int aResultCode);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;If the code does not exist in the map, &lt;code&gt;null&lt;/code&gt; is returned.&lt;/p&gt;</description>
    </item>
    <item>
      <title>ITargetAddressDatabase</title>
      <link>https://sillysky.net/docs/nyssr/logging/inamedb/itargetaddressdatabase/</link>
      <pubDate>Tue, 14 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://sillysky.net/docs/nyssr/logging/inamedb/itargetaddressdatabase/</guid>
      <description>&lt;p&gt;This service provides a descriptive name for &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/ctargetaddress/&#34;&gt;target addresses&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;h2 id=&#34;get-the-service&#34;&gt;Get the service&lt;/h2&gt;&#xA;&lt;p&gt;The service is provided by the &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/&#34;&gt;name database&lt;/a&gt; using a getter method.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;final &lt;a href=&#34;https://sillysky.net/docs/nyssr/logging/inamedb/itargetaddressdatabase/&#34;&gt;ITargetAddressDatabase&lt;/a&gt; db = nameDb.getTargetAddressDatabase();&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;store-a-target-address&#34;&gt;Store a target address&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void putName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/ctargetaddress/&#34;&gt;CTargetAddress&lt;/a&gt; aAddress,&#xA;             @NotNull String aName);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;remove-a-target-address&#34;&gt;Remove a target address&lt;/h2&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;void removeName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/ctargetaddress/&#34;&gt;CTargetAddress&lt;/a&gt; aAddress);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;h2 id=&#34;get-a-name&#34;&gt;Get a name&lt;/h2&gt;&#xA;&lt;p&gt;If the target address does not exist in the map, the address itself will be&#xA;returned as String.&lt;/p&gt;&#xA;&lt;pre class=&#34;ss-javacode&#34;&gt;&lt;code class=&#34;language-java&#34;&gt;@NotNull String getName(@NotNull &lt;a href=&#34;https://sillysky.net/docs/nyssr/ids-and-addresses/ctargetaddress/&#34;&gt;CTargetAddress&lt;/a&gt; aTargetAddress);&lt;/code&gt;&lt;/pre&gt;&#xA;&#xA;&lt;p&gt;If the target address does not exist in the map, &lt;code&gt;null&lt;/code&gt; is returned.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
