Classifier status is a string instead of an enumeration. There are places in the code where we may want to check the classifiers state, e.g.
classifier.getStatus().equals(Status.AVAILABLE)
This prevents us from needing to hardcode the status strings, or define them as constants in our codebase.