1 |
#ifndef RESIP_Pkcs8Contents_hxx |
2 |
#define RESIP_Pkcs8Contents_hxx |
3 |
|
4 |
#include "resiprocate/Contents.hxx" |
5 |
#include "resiprocate/os/Data.hxx" |
6 |
|
7 |
namespace resip |
8 |
{ |
9 |
|
10 |
class Pkcs8Contents : public Contents |
11 |
{ |
12 |
public: |
13 |
static const Pkcs8Contents Empty; |
14 |
|
15 |
Pkcs8Contents(); |
16 |
Pkcs8Contents(const Data& text); |
17 |
Pkcs8Contents(HeaderFieldValue* hfv, const Mime& contentType); |
18 |
Pkcs8Contents(const Data& data, const Mime& contentType); |
19 |
Pkcs8Contents(const Pkcs8Contents& rhs); |
20 |
virtual ~Pkcs8Contents(); |
21 |
Pkcs8Contents& operator=(const Pkcs8Contents& rhs); |
22 |
|
23 |
virtual Contents* clone() const; |
24 |
|
25 |
virtual Data getBodyData() const; |
26 |
|
27 |
static const Mime& getStaticType() ; |
28 |
|
29 |
virtual std::ostream& encodeParsed(std::ostream& str) const; |
30 |
virtual void parse(ParseBuffer& pb); |
31 |
|
32 |
Data& text() {checkParsed(); return mText;} |
33 |
|
34 |
static bool init(); |
35 |
|
36 |
private: |
37 |
Data mText; |
38 |
}; |
39 |
|
40 |
} |
41 |
|
42 |
#endif |
43 |
|
44 |
/* ==================================================================== |
45 |
* The Vovida Software License, Version 1.0 |
46 |
* |
47 |
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
48 |
* |
49 |
* Redistribution and use in source and binary forms, with or without |
50 |
* modification, are permitted provided that the following conditions |
51 |
* are met: |
52 |
* |
53 |
* 1. Redistributions of source code must retain the above copyright |
54 |
* notice, this list of conditions and the following disclaimer. |
55 |
* |
56 |
* 2. Redistributions in binary form must reproduce the above copyright |
57 |
* notice, this list of conditions and the following disclaimer in |
58 |
* the documentation and/or other materials provided with the |
59 |
* distribution. |
60 |
* |
61 |
* 3. The names "VOCAL", "Vovida Open Communication Application Library", |
62 |
* and "Vovida Open Communication Application Library (VOCAL)" must |
63 |
* not be used to endorse or promote products derived from this |
64 |
* software without prior written permission. For written |
65 |
* permission, please contact vocal@vovida.org. |
66 |
* |
67 |
* 4. Products derived from this software may not be called "VOCAL", nor |
68 |
* may "VOCAL" appear in their name, without prior written |
69 |
* permission of Vovida Networks, Inc. |
70 |
* |
71 |
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
72 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
73 |
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
74 |
* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
75 |
* NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
76 |
* IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
77 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
78 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
79 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
80 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
81 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
82 |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
83 |
* DAMAGE. |
84 |
* |
85 |
* ==================================================================== |
86 |
* |
87 |
* This software consists of voluntary contributions made by Vovida |
88 |
* Networks, Inc. and many individuals on behalf of Vovida Networks, |
89 |
* Inc. For more information on Vovida Networks, Inc., please see |
90 |
* <http://www.vovida.org/>. |
91 |
* |
92 |
*/ |