public static RegistrationErrorType getRegistrationInstance(Errors errors)
{
if (errors.getRegistration() == null)
{
RegistrationErrorType regErrors =
OBJECT_FACTORY.createRegistrationErrorType();
errors.setRegistration(regErrors);
}
return errors.getRegistration();
}