History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: XFIRE-554
Type: Bug Bug
Status: Closed Closed
Resolution: Cannot Reproduce
Priority: Major Major
Assignee: Dan Diephouse
Reporter: Keith Garry Boyce
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
XFire

Exceptions returning Object as a getter do not work when fault is raised. Right now getter needs to be strongly typed.

Created: 26/Jul/06 09:48 AM   Updated: 20/Aug/06 12:31 PM
Component/s: None
Affects Version/s: 1.2-RC
Fix Version/s: 1.2

Time Tracking:
Not Specified


 Description  « Hide
I was told this was a duplicate of XFIRE-35 but I have confirmed it's still not working.

public class GenericServiceDAOException extends RuntimeException implements ObjectContaining {

private Object containedObject;
private String containedObjectString;

//TODO: XFIRE-35: We need to make the getters and setters be Strongly typed until
// Jira is completed

public Object getContainedObject() { return containedObject; }



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Dan Diephouse - 20/Aug/06 12:31 PM
I could not reproduce this. I wrote a unit test here which shows that it works too:

http://svn.xfire.codehaus.org/browse/xfire/trunk/xfire/xfire-aegis/src/test/org/codehaus/xfire/aegis/inheritance/ExceptionInheritanceTest.java?r=1824

Let me know if you see any issues.