Up

GSWeb: Class GSWActionRequestHandler

Authors

Manuel Guesdon (mguesdon@orange-concept.com)

Version: 1.1

Date: 2003/11/24 10:28:39

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


Contents -

  1. Software documentation for the GSWActionRequestHandler class
  2. Software documentation for the GSWActionRequestHandler(GSWRequestHandlerClassA) category

Software documentation for the GSWActionRequestHandler class

GSWActionRequestHandler : GSWRequestHandler

Declared in:
Foundation/GSWActionRequestHandler.h
Standards:

Description forthcoming.


Instance Variables

Method summary

_actionClassForName: 

+ (Class) _actionClassForName: (NSString*)name;

Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.


_handleRequest: 

- (GSWResponse*) _handleRequest: (GSWRequest*)aRequest;

Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.


defaultDefaultActionName 

- (NSString*) defaultDefaultActionName;

Description forthcoming.


defaultShouldAddToStatistics 

- (BOOL) defaultShouldAddToStatistics;

Description forthcoming.


generateErrorResponseWithException: inContext: 

- (GSWResponse*) generateErrorResponseWithException: (NSException*)error inContext: (GSWContext*)aContext;

Description forthcoming.


generateNullResponse 

- (GSWResponse*) generateNullResponse;

Description forthcoming.


generateRequestRefusalResponseForRequest: 

- (GSWResponse*) generateRequestRefusalResponseForRequest: (GSWRequest*)aRequest;

Description forthcoming.


getRequestActionClassNameInto: classInto: nameInto: forPath: 

- (void) getRequestActionClassNameInto: (NSString**)actionClassNamePtr classInto: (Class*)actionClassPtr nameInto: (NSString**)actionNamePtr forPath: (NSArray*)path;

Description forthcoming.


getRequestHandlerPathForRequest: 

- (NSArray*) getRequestHandlerPathForRequest: (GSWRequest*)aRequest;

Description forthcoming.


handleRequest: 

- (GSWResponse*) handleRequest: (GSWRequest*)aRequest;

Description forthcoming.


initWithDefaultActionClassName: defaultActionName: shouldAddToStatistics: 

- (id) initWithDefaultActionClassName: (NSString*)defaultActionClassName defaultActionName: (NSString*)defaultActionName shouldAddToStatistics: (BOOL)shouldAddToStatistics;

Description forthcoming.


registerDidHandleActionRequestWithActionNamed: 

- (void) registerDidHandleActionRequestWithActionNamed: (NSString*)actionName;

Description forthcoming.


registerWillHandleActionRequest 

- (void) registerWillHandleActionRequest;

Description forthcoming.




Instance Variables for GSWActionRequestHandler Class

_actionClassClass

@protected Class _actionClassClass;

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.


_actionClassName

@protected NSString* _actionClassName;

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.


_defaultActionName

@protected NSString* _defaultActionName;

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.


_shouldAddToStatistics

@protected BOOL _shouldAddToStatistics;

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.





Software documentation for the GSWActionRequestHandler(GSWRequestHandlerClassA) category

GSWActionRequestHandler(GSWRequestHandlerClassA)

Declared in:
Foundation/GSWActionRequestHandler.h
Standards:

Description forthcoming.

Method summary

handler 

+ (id) handler;

Description forthcoming.


handlerWithDefaultActionClassName: defaultActionName: shouldAddToStatistics: 

+ (GSWActionRequestHandler*) handlerWithDefaultActionClassName: (NSString*)defaultActionClassName defaultActionName: (NSString*)defaultActionName shouldAddToStatistics: (BOOL)shouldAddToStatistics;

Description forthcoming.



Up