CustomClass
is a bean (POJO), and always has been a bean, although perhaps not literally a POJO, since it was an embedded class.
I think what you're asking is should it be a
Managed Bean. And the answer to that is no.
A Managed Bean isn't a class, it's a unique
instance of a class, accessible by name and constructed automatically by
JSF.
Since CustomClass is not being used as a single unique instance - instead you have an entire collection of CustomClass objects, the bean management mechanisms would only apply if you went to the not-inconsiderable effort of adding a whole lot of managed CustomClass instances to your faces-config file (Annotations can't deal with multiple instances), and then fed the references to all those instances to the target bean's constructor as a managed collection property. Which is probably not going to be flexible enough for most purposes.