use of org.stepik.core.stepik.StepikAuthState in project intellij-plugins by StepicOrg.
the class JavaWizardStep method validate.
@Override
public boolean validate() throws ConfigurationException {
StepikAuthState authenticated = authentication(true);
if (authenticated != AUTH) {
throw new ConfigurationException("Please, you should login", "Error");
}
valid = panel.validate();
return valid;
}
Aggregations