If I am implementing:
public void acceptRepresentation( Representation rep ) {
// ...
}
Is using that "rep" exactly the same as if I had instead done:
Representation rep1 = getRequest().getEntity();
? Is the "rep" being passed to acceptRepresentation() just a
convenience?
- Paul
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2380079

