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

Constraint : conoid

Constraint Name
conoid (type: ERROR, kind: )
Constraint Class
PPPAckDocSpec
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()))
  					)
  				)
  			)