diff --git a/OpenSim/Services/Interfaces/IPresenceService.cs b/OpenSim/Services/Interfaces/IPresenceService.cs
index 8d583fff73..90f98426f2 100644
--- a/OpenSim/Services/Interfaces/IPresenceService.cs
+++ b/OpenSim/Services/Interfaces/IPresenceService.cs
@@ -61,13 +61,49 @@ namespace OpenSim.Services.Interfaces
public interface IPresenceService
{
+ ///
+ /// Store session information.
+ ///
+ /// /returns>
+ ///
+ ///
+ ///
bool LoginAgent(string userID, UUID sessionID, UUID secureSessionID);
+
+ ///
+ /// Remove session information.
+ ///
+ ///
+ ///
bool LogoutAgent(UUID sessionID);
+
+ ///
+ /// Remove session information for all agents in the given region.
+ ///
+ ///
+ ///
bool LogoutRegionAgents(UUID regionID);
+ ///
+ /// Update data for an existing session.
+ ///
+ ///
+ ///
+ ///
bool ReportAgent(UUID sessionID, UUID regionID);
+ ///
+ /// Get session information for a given session ID.
+ ///
+ ///
+ ///
PresenceInfo GetAgent(UUID sessionID);
+
+ ///
+ /// Get session information for a collection of users.
+ ///
+ /// Session information for the users.
+ ///
PresenceInfo[] GetAgents(string[] userIDs);
}
-}
+}
\ No newline at end of file