-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathIImportClient.cs
More file actions
40 lines (37 loc) · 1.15 KB
/
IImportClient.cs
File metadata and controls
40 lines (37 loc) · 1.15 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
namespace Relativity.Server.DataExchange.Wrapper
{
/// <summary>
/// Represents an abstract client to create supported bulk artifact import jobs.
/// </summary>
public interface IImportClient
{
/// <summary>
/// Creates the image import job.
/// </summary>
/// <returns>
/// The <see cref="IImageBulkArtifactImportJob"/> instance.
/// </returns>
IImageBulkArtifactImportJob CreateImageImportJob();
/// <summary>
/// Creates the native document import job.
/// </summary>
/// <returns>
/// The <see cref="IBulkArtifactImportJob"/> instance.
/// </returns>
IBulkArtifactImportJob CreateNativeDocumentImportJob();
/// <summary>
/// Creates the object import job.
/// </summary>
/// <returns>
/// The <see cref="IBulkArtifactImportJob"/> instance.
/// </returns>
IBulkArtifactImportJob CreateObjectImportJob(int artifactTypeId);
/// <summary>
/// Creates the production import job.
/// </summary>
/// <returns>
/// The <see cref="IImageBulkArtifactImportJob"/> instance.
/// </returns>
IImageBulkArtifactImportJob CreateProductionImportJob(int productionArtifactId);
}
}