~manishsinha/lpsharp/proxy-code

« back to all changes in this revision

Viewing changes to LpNet.LpSharp/ClientProxy/SshKeyFull.cs

  • Committer: Manish Sinha
  • Date: 2011-03-08 16:34:35 UTC
  • Revision ID: manishsinha.tech@gmail.com-20110308163435-tanqewijjckmjl6h
Remove all the proxy. It is a mess

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//------------------------------------------------------------------------------
2
 
// <auto-generated>
3
 
//     This code was generated by a tool.
4
 
//     Runtime Version: 2.0.50727.1433
5
 
//
6
 
//     Changes to this file may cause incorrect behavior and will be lost if
7
 
//     the code is regenerated.
8
 
// </auto-generated>
9
 
//------------------------------------------------------------------------------
10
 
 
11
 
namespace LpNet.Launchpad.Core
12
 
{
13
 
    using System.Collections.Generic;
14
 
    using System.Reflection;
15
 
    using System.ComponentModel;
16
 
    using System;
17
 
    
18
 
    
19
 
    public partial class SshKeyFull
20
 
    {
21
 
        
22
 
        protected string _selfLink;
23
 
        
24
 
        protected string _webLink;
25
 
        
26
 
        protected string _resourceTypeLink;
27
 
        
28
 
        protected string _httpEtag;
29
 
        
30
 
        protected string _comment;
31
 
        
32
 
        protected string _keytext;
33
 
        
34
 
        protected Keytype _keytype;
35
 
        
36
 
        /// <summary>
37
 
        /// The canonical link to this resource.
38
 
        /// </summary>
39
 
        [Description("ssh_key")]
40
 
        public string SelfLink
41
 
        {
42
 
            get
43
 
            {
44
 
                return this._selfLink;
45
 
            }
46
 
            set
47
 
            {
48
 
                this._selfLink = value;
49
 
            }
50
 
        }
51
 
        
52
 
        /// <summary>
53
 
        /// The canonical human-addressable web link to this resource.
54
 
        /// </summary>
55
 
        public string WebLink
56
 
        {
57
 
            get
58
 
            {
59
 
                return this._webLink;
60
 
            }
61
 
            set
62
 
            {
63
 
                this._webLink = value;
64
 
            }
65
 
        }
66
 
        
67
 
        /// <summary>
68
 
        /// The link to the WADL description of this resource.
69
 
        /// </summary>
70
 
        public string ResourceTypeLink
71
 
        {
72
 
            get
73
 
            {
74
 
                return this._resourceTypeLink;
75
 
            }
76
 
            set
77
 
            {
78
 
                this._resourceTypeLink = value;
79
 
            }
80
 
        }
81
 
        
82
 
        /// <summary>
83
 
        /// The value of the HTTP ETag for this resource.
84
 
        /// </summary>
85
 
        public string HttpEtag
86
 
        {
87
 
            get
88
 
            {
89
 
                return this._httpEtag;
90
 
            }
91
 
            set
92
 
            {
93
 
                this._httpEtag = value;
94
 
            }
95
 
        }
96
 
        
97
 
        /// <summary>
98
 
        /// Comment describing this key
99
 
        /// </summary>
100
 
        public string Comment
101
 
        {
102
 
            get
103
 
            {
104
 
                return this._comment;
105
 
            }
106
 
            set
107
 
            {
108
 
                this._comment = value;
109
 
            }
110
 
        }
111
 
        
112
 
        /// <summary>
113
 
        /// Key text
114
 
        /// </summary>
115
 
        public string Keytext
116
 
        {
117
 
            get
118
 
            {
119
 
                return this._keytext;
120
 
            }
121
 
            set
122
 
            {
123
 
                this._keytext = value;
124
 
            }
125
 
        }
126
 
        
127
 
        /// <summary>
128
 
        /// Key type
129
 
        /// </summary>
130
 
        public Keytype Keytype
131
 
        {
132
 
            get
133
 
            {
134
 
                return this._keytype;
135
 
            }
136
 
            set
137
 
            {
138
 
                this._keytype = value;
139
 
            }
140
 
        }
141
 
    }
142
 
}