Uses of Class
org.simpleframework.xml.core.Session
-
Packages that use Session Package Description org.simpleframework.xml.core -
-
Uses of Session in org.simpleframework.xml.core
Fields in org.simpleframework.xml.core declared as Session 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 newSession
object.Session
SessionManager.Reference. get()
This is used to acquire the session and increase the count of references to the session.Session
Context. getSession()
This is used to acquire theSession
object that is used to store the values used within the serialization process.Session
Source. getSession()
This is used to acquire theSession
object that is used to store the values used within the serialization process.Session
SessionManager. open()
This is used to open a newSession
object.Session
SessionManager. open(boolean strict)
This is used to open a newSession
object.Methods in org.simpleframework.xml.core with parameters of type Session Modifier and Type Method Description private <T> T
Persister. read(java.lang.Class<? extends T> type, InputNode node, Session session)
Thisread
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)
Thisread
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(java.lang.Class type, InputNode node, Session session)
Thisvalidate
method will validate the contents of the XML document against the specified XML class schema.private void
Persister. write(java.lang.Object source, OutputNode root, Session session)
Thiswrite
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 Constructor Description Source(Strategy strategy, Support support, Session session)
Constructor for theSource
object.
-