Class Session_impl

  • All Implemented Interfaces:
    java.io.Serializable, Session

    public class Session_impl
    extends java.lang.Object
    implements Session
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.util.Map<java.lang.String,​java.lang.Object> mMap  
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      Session_impl()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object get​(java.lang.String aKey)
      Gets an object from the Session
      void put​(java.lang.String aKey, java.lang.Object aValue)
      Stores an object in the Session
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • mMap

        private java.util.Map<java.lang.String,​java.lang.Object> mMap
    • Constructor Detail

      • Session_impl

        public Session_impl()
    • Method Detail

      • put

        public void put​(java.lang.String aKey,
                        java.lang.Object aValue)
        Description copied from interface: Session
        Stores an object in the Session
        Specified by:
        put in interface Session
        Parameters:
        aKey - Key
        aValue - Value
      • get

        public java.lang.Object get​(java.lang.String aKey)
        Description copied from interface: Session
        Gets an object from the Session
        Specified by:
        get in interface Session
        Parameters:
        aKey - Key
        Returns:
        the associated value