Constraint Descriptor : conoid (type: ERROR, kind: )

Constraint : conoid

Constraint Name
conoid (type: ERROR, kind: )
Constraint Class
PPPIdentifierSpec
Package
samlihe
Description
The content of the AttributeValue element shall be an OID prefixed with 'urn:oid:' (ITI_TF_Vol2b, 3.40.4.1.2.2)
OCL
self.attributeValue->size()>0 and 
self.attributeValue->forAll(att: AttributeValueType |
	att.getListStringValues()->forAll(st : String | 
		st='' or 
		(
			att.matches(st, 'urn:oid:.*') and 
			att.isOID(st.substring(9, st.size()))
		)
	)
)