Uses of Class
org.simpleframework.xml.core.Session

Packages that use Session
Package
Description
 
  • Uses of Session in org.simpleframework.xml.core

    Modifier and Type
    Field
    Description
    private Session
    SessionManager.Reference.session
    This is the session object that is maintained by this.
    private Session
    Source.session
    This is used to store the source context attribute values.
    Methods in org.simpleframework.xml.core that return Session
    Modifier and Type
    Method
    Description
    private Session
    SessionManager.create(boolean strict)
    This is used to create a new Session object.
    SessionManager.Reference.get()
    This is used to acquire the session and increase the count of references to the session.
    Context.getSession()
    This is used to acquire the Session object that is used to store the values used within the serialization process.
    Source.getSession()
    This is used to acquire the Session object that is used to store the values used within the serialization process.
    SessionManager.open()
    This is used to open a new Session object.
    SessionManager.open(boolean strict)
    This is used to open a new Session object.
    Methods in org.simpleframework.xml.core with parameters of type Session
    Modifier and Type
    Method
    Description
    private <T> T
    Persister.read(Class<? extends T> type, InputNode node, Session session)
    This read method will read the contents of the XML document provided and convert it to an object of the specified type.
    private <T> T
    Persister.read(T value, InputNode node, Session session)
    This read method will read the contents of the XML document from the provided source and populate the object with the values deserialized.
    private boolean
    Persister.validate(Class type, InputNode node, Session session)
    This validate method will validate the contents of the XML document against the specified XML class schema.
    private void
    Persister.write(Object source, OutputNode root, Session session)
    This write method will traverse the provided object checking for field annotations in order to compose the XML data.
    Constructors in org.simpleframework.xml.core with parameters of type Session
    Modifier
    Constructor
    Description
     
    Source(Strategy strategy, Support support, Session session)
    Constructor for the Source object.