The question is regarding method declaraion in a component interface, which session bean can have the create method with parameters.
MyBean create(String name) throws CreateException, RemoteException; The answer marked is only stateful session bean. I know that the create method with parameters can only be used for Stateful session beans, but the question is missing "public". Is it still valid? I don't want to miss a question on exam for this simple reason by take it granted that public is implied as mentioned in the HFEJB book.