added NSC as IFBoatStatus to XRR schema and generated code

This commit is contained in:
Axel Uhl
2022-06-01 20:37:26 +02:00
parent 3a37912893
commit 044eb58afd
3 changed files with 12 additions and 1 deletions
@@ -28,6 +28,8 @@
<li>To configure remote server references, instead of the <tt>SERVER:UPDATE</tt> permission users
now need the more specific <tt>SERVER:CONFIGURE_REMOTE_INSTANCES</tt> permission.</li>
<li>Running subscription updates is now avoided on replica servers.</li>
<li>Added the penalty code (IRM) "NSC" to the XRR schema, e.g., for allowing it to be imported
from XRR sources such as Manage2Sail.</li>
</ul>
<h2 class="articleSubheadline">April 2022</h2>
<ul class="bulletList">
@@ -2255,6 +2255,11 @@
<xsd:documentation>Retired</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="NSC">
<xsd:annotation>
<xsd:documentation>Did not sail the course</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="IFCfcnGroup">
@@ -163,7 +163,11 @@ public enum IFBoatStatus {
/**
* Standard Penalty by Race Committee; gives a certain number of penalty points on top of rank-inferred score
*/
STP;
STP,
/**
* Did not sail the course
*/
NSC;
public String value() {
return name();