Uses of Interface
uk.org.ogsadai.common.properties.Properties

Packages that use Properties
uk.org.ogsadai.common.properties This package provides classes and interfaces provide for the use of properties, both those where the property value is static and those where its value is provided on-demand via callbacks. 
uk.org.ogsadai.service.resource This package provides classes and interfaces relating to data service resources. 
uk.org.ogsadai.sessions Contains the core classes and interfaces used to support sessions. 
uk.org.ogsadai.sessions.impl Contains implementations of the sessions interfaces to provide support for transient sessions. 
 

Uses of Properties in uk.org.ogsadai.common.properties
 

Classes in uk.org.ogsadai.common.properties that implement Properties
 class PropertiesImpl
          An implementation of a collection of uk.org.ogsadai.common.Property objects.
 

Methods in uk.org.ogsadai.common.properties that return Properties
 Properties PropertyEvent.getProperties()
          Returns the Properties object that originated the event.
 

Constructors in uk.org.ogsadai.common.properties with parameters of type Properties
PropertyEvent(Properties source, Property property)
          Constructs a PropertyEvent representing an occurence between a source properties collection and a property object.
 

Uses of Properties in uk.org.ogsadai.service.resource
 

Fields in uk.org.ogsadai.service.resource declared as Properties
private  Properties DataServiceResource.mProperties
          Data service resource properties
 

Methods in uk.org.ogsadai.service.resource that return Properties
 Properties DataServiceResource.getProperties()
          Gets the data service resource properties for the resource.
 

Uses of Properties in uk.org.ogsadai.sessions
 

Fields in uk.org.ogsadai.sessions declared as Properties
private  Properties SessionConfigurationLoader.mResourceProperties
          Resource properties associated with the the session components
 

Methods in uk.org.ogsadai.sessions that return Properties
 Properties Session.getProperties()
          Gets the set of data service resource properties that are available to this session.
 

Methods in uk.org.ogsadai.sessions with parameters of type Properties
 void SessionComponentFactory.setResourceProperties(Properties resourceProperties)
          Specifies the data resource properties associated with the data resource.
 void SessionConfigurationLoader.setResourceProperties(Properties resourceProperties)
           
 SessionManager SessionManagerFactory.createSessionManager(org.w3c.dom.Element configuration, Properties properties, DataResourceAccessor dataResource)
          Creates a new session manager instance.
 

Uses of Properties in uk.org.ogsadai.sessions.impl
 

Fields in uk.org.ogsadai.sessions.impl declared as Properties
private  Properties TransientSessionConfiguration.mProperties
           
private  Properties TransientInternalSession.mProperties
           
 

Methods in uk.org.ogsadai.sessions.impl that return Properties
 Properties TransientSessionConfiguration.getResourceProperties()
           
 Properties TransientInternalSession.getProperties()
           
 Properties SafeSession.getProperties()
           
 Properties SessionConfiguration.getResourceProperties()
          Gets the resource properties that should be added to each new session created by the session manager.
 

Methods in uk.org.ogsadai.sessions.impl with parameters of type Properties
 SessionManager TransientSessionManagerFactory.createSessionManager(org.w3c.dom.Element configuration, Properties properties, DataResourceAccessor dataResource)
           
protected  SessionConfiguration TransientSessionManagerFactory.createConfiguration(long defaultTimeout, long maxTimeout, java.util.Set attributes, Properties properties, DataResourceAccessor dataResource)
          Creates and returns an anonymous instance of the TransientSessionConfiguration class that simply returns the specified timeouts and static properties.
 

Constructors in uk.org.ogsadai.sessions.impl with parameters of type Properties
TransientSessionConfiguration(long defaultTimeout, long maxTimeout, java.util.Set attributes, Properties properties, DataResourceAccessor dataResource)
          Creates a new configuration object with the specified settings.
TransientInternalSession(SessionSettings settings, java.util.Set attributes, Properties properties)
          Creates a new TransientInternalSession.