Up

GSWeb: Class GSWSessionTimeOut

Authors

Manuel Guesdon (mguesdon@orange-concept.com)

Version: 1.4

Date: 2003/06/25 15:39:02

Copyright: (C) 1999-2002 Free Software Foundation, Inc.

Software documentation for the GSWSessionTimeOut class

GSWSessionTimeOut : NSObject

Declared in:
Foundation/GSWSessionTimeOut.h
Standards:

Description forthcoming.


Instance Variables

Method summary

timeOutWithSessionID: lastAccessTime: sessionTimeOut: 

+ (id) timeOutWithSessionID: (NSString*)aSessionID lastAccessTime: (NSTimeInterval)aTime sessionTimeOut: (NSTimeInterval)aTimeOutInterval;

Description forthcoming.


compareTimeOutDate: 

- (NSComparisonResult) compareTimeOutDate: (GSWSessionTimeOut*)timeOutObject;

Description forthcoming.


description 

- (NSString*) description;

Description forthcoming.


initWithSessionID: lastAccessTime: sessionTimeOut: 

- (id) initWithSessionID: (NSString*)aSessionID lastAccessTime: (NSTimeInterval)aTime sessionTimeOut: (NSTimeInterval)aTimeOutInterval;

Description forthcoming.


isCheckedOut 

- (BOOL) isCheckedOut;

Description forthcoming.


lastAccessTime 

- (NSTimeInterval) lastAccessTime;

Description forthcoming.


lastAccessTimeDate 

- (NSDate*) lastAccessTimeDate;

Description forthcoming.


sessionID 

- (NSString*) sessionID;

Description forthcoming.


sessionTimeOut 

- (NSTimeInterval) sessionTimeOut;

Description forthcoming.


setIsCheckedOut: 

- (void) setIsCheckedOut: (BOOL)isCheckOut;

Description forthcoming.


setLastAccessTime: 

- (void) setLastAccessTime: (NSTimeInterval)aTime;

Description forthcoming.


setSessionTimeOut: 

- (void) setSessionTimeOut: (NSTimeInterval)aTimeOutInterval;

Description forthcoming.


timeOutTime 

- (NSTimeInterval) timeOutTime;

Description forthcoming.


timeOutTimeDate 

- (NSDate*) timeOutTimeDate;

Description forthcoming.




Instance Variables for GSWSessionTimeOut Class

_isCheckedOut

@protected BOOL _isCheckedOut;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_lastAccessTime

@protected NSTimeInterval _lastAccessTime;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_sessionID

@protected NSString* _sessionID;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.


_timeOut

@protected NSTimeInterval _timeOut;

Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.






Up