Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
I'm creating a Collection object using the code below. The objects in the Collection are FlexObject type. I would assume that the setObjectsState method would convert the FlexObject types to LifeCycleManaged, but it doesn't. Do I really have to walk through the Collection and type cast each object and put it into a new Collection to use this method?
com.lcs.wc.placeholder.Placeholder ph = (com.lcs.wc.placeholder.Placeholder)primaryBusinessObject;
java.util.Collection col = com.lcs.wc.placeholder.PlaceholderQuery.findProductsForPlaceholder(ph);
com.lcs.wc.lifecycle.SetStateUtil.setObjectsState(col, wt.lifecycle.State.toState("ESTIMATED"), true);
