public void setSession(Map session) { this.session = session; }
public Vector<Problem> getProblemVector() { return problemVector; }
public void setProblemVector(Vector<Problem> problemVector) { this.problemVector = problemVector; }
public Exception getException() { return exception; } }
In this class i create my vector, and add problemObjects which belong to a user, into this vector. Now i would like to display a table in my jsp file, for every object in my vector there should be one row.
i tried to iterate over the vector, but i think i did not use the right syntax.