-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathImportConnectionInfo.cs
More file actions
73 lines (68 loc) · 1.59 KB
/
ImportConnectionInfo.cs
File metadata and controls
73 lines (68 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
namespace Relativity.Server.DataExchange.Wrapper
{
using System;
/// <summary>
/// Represents the import connection information class object.
/// Implements the <see cref="System.MarshalByRefObject" />
/// </summary>
/// <seealso cref="System.MarshalByRefObject" />
public sealed class ImportConnectionInfo : MarshalByRefObject
{
/// <summary>
/// Gets or sets the Relativity login username.
/// </summary>
/// <value>
/// The name of the user.
/// </value>
public string UserName
{
get;
set;
}
/// <summary>
/// Gets or sets the Relativity login password.
/// </summary>
/// <value>
/// The password.
/// </value>
public string Password
{
get;
set;
}
/// <summary>
/// Gets or sets a value indicating whether to login using the Relativity Service Account (RSA).
/// This is the recommended approach when importing data from an Agent or Custom Page but is only supported by the SDK.
/// </summary>
/// <value>
/// <see langword="true" /> to login using the Relativity Service Account; otherwise, <see langword="false" />.
/// </value>
public bool UseRsaBearerToken
{
get;
set;
}
/// <summary>
/// Gets or sets the workspace artifact identifier.
/// </summary>
/// <value>
/// The artifact identifier.
/// </value>
public int WorkspaceId
{
get;
set;
}
/// <summary>
/// Gets or sets the Relativity WebAPI service URL.
/// </summary>
/// <value>
/// The URL.
/// </value>
public string WebServiceUrl
{
get;
set;
}
}
}