Configuration and Auto-Certificates
[aaf/authz.git] / auth / auth-service / src / main / java / org / onap / aaf / auth / service / validation / ServiceValidator.java
index 61b5338..80b06a5 100644 (file)
@@ -141,11 +141,8 @@ public class ServiceValidator extends Validator {
                if(cd==null) {
                        msg("Cred Data is null.");
                } else {
-                       if(nob(cd.id,ID_CHARS)) {
-                               msg("ID [" + cd.id + "] is invalid in " + org.getName());
-                       }
                        if(!org.isValidCred(trans, cd.id)) {
-                               msg("ID [" + cd.id + "] is invalid for a cred in " + org.getName());
+                               msg("ID [" + cd.id + "] is invalid in " + org.getName());
                        }
                        String str = cd.id;
                        int idx = str.indexOf('@');