mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-18 11:49:09 +00:00
added NSC as IFBoatStatus to XRR schema and generated code
This commit is contained in:
@@ -28,6 +28,8 @@
|
|||||||
<li>To configure remote server references, instead of the <tt>SERVER:UPDATE</tt> permission users
|
<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>
|
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>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>
|
</ul>
|
||||||
<h2 class="articleSubheadline">April 2022</h2>
|
<h2 class="articleSubheadline">April 2022</h2>
|
||||||
<ul class="bulletList">
|
<ul class="bulletList">
|
||||||
|
|||||||
@@ -2255,6 +2255,11 @@
|
|||||||
<xsd:documentation>Retired</xsd:documentation>
|
<xsd:documentation>Retired</xsd:documentation>
|
||||||
</xsd:annotation>
|
</xsd:annotation>
|
||||||
</xsd:enumeration>
|
</xsd:enumeration>
|
||||||
|
<xsd:enumeration value="NSC">
|
||||||
|
<xsd:annotation>
|
||||||
|
<xsd:documentation>Did not sail the course</xsd:documentation>
|
||||||
|
</xsd:annotation>
|
||||||
|
</xsd:enumeration>
|
||||||
</xsd:restriction>
|
</xsd:restriction>
|
||||||
</xsd:simpleType>
|
</xsd:simpleType>
|
||||||
<xsd:simpleType name="IFCfcnGroup">
|
<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
|
* 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() {
|
public String value() {
|
||||||
return name();
|
return name();
|
||||||
|
|||||||
Reference in New Issue
Block a user