]> err.no Git - sope/blob - sope-appserver/NGXmlRpc/NGXmlRpcInvocation.h
milli => micro
[sope] / sope-appserver / NGXmlRpc / NGXmlRpcInvocation.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21 // $Id$
22
23 #ifndef __NGXmlRpcInvocation_H__
24 #define __NGXmlRpcInvocation_H__
25
26 #import <Foundation/NSObject.h>
27
28 @class NSString, NSMutableArray;
29 @class NGXmlRpcClient;
30 @class NGXmlRpcMethodSignature;
31
32 @interface NGXmlRpcInvocation : NSObject < NSCoding >
33 {
34   NGXmlRpcClient          *target;
35   NSString                *methodName;
36   NGXmlRpcMethodSignature *signature;
37   
38   NSMutableArray *arguments;
39   id             result;
40 }
41
42 - (id)initWithMethodSignature:(NGXmlRpcMethodSignature *)_sig;
43
44 /* arguments */
45
46 - (NGXmlRpcMethodSignature *)methodSignature;
47
48 - (void)setArgument:(id)_argument atIndex:(int)index;
49 - (id)argumentAtIndex:(int)index;
50
51 - (void)setReturnValue:(id)_result;
52 - (id)returnValue;
53
54 - (void)setMethodName:(NSString *)_mname;
55 - (NSString *)methodName;
56
57 - (void)setTarget:(NGXmlRpcClient *)_target;
58 - (NGXmlRpcClient *)target;
59
60 /* Dispatching an Invocation */
61
62 - (void)invoke;
63 - (void)invokeWithTarget:(NGXmlRpcClient *)_target;
64
65 @end
66
67 @interface NSObject(XmlRpcValue)
68
69 - (id)asXmlRpcValueOfType:(NSString *)_xmlRpcValueType;
70
71 @end
72
73 #endif /* __NGXmlRpcInvocation_H__ */