* @param xmlObject the object to validate
* @throws ValidationException thrown if the object is invalid
*/
protected void validateChildrenPresence(X509IssuerSerial xmlObject) throws ValidationException {
if (xmlObject.getX509IssuerName() == null) {
throw new ValidationException("X509IssuerSerial does not contain an X509IssuerName");
}
if (xmlObject.getX509SerialNumber() == null) {
throw new ValidationException("X509IssuerSerial does not contain an X509SerialNumber");
}
}