Skip to content

Commit

Permalink
SAK-10801 Implement getContext() for event API changes
Browse files Browse the repository at this point in the history
git-svn-id: https://source.sakaiproject.org/svn/content/trunk@47472 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
smarquard committed Jun 15, 2008
1 parent 291e85b commit 8f384ed
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ protected static class ReEvent implements Event
private boolean modify;
private int priority;
private String resource;
private String context;
private String sessionId;
private String userId;

Expand All @@ -210,6 +211,7 @@ public ReEvent(String event, boolean modify, int priority, String resource, Stri
this.priority = priority;
this.resource = resource;
this.userId = userId;
this.context = null;
}

public String getEvent()
Expand Down Expand Up @@ -241,5 +243,11 @@ public String getUserId()
{
return userId;
}

public String getContext()
{
return context;
}

}
}

0 comments on commit 8f384ed

Please sign in to comment.