-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIExporter.cs
45 lines (41 loc) · 2.17 KB
/
IExporter.cs
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
using System.Collections.Generic;
using Rock.Data;
namespace EntityCoding
{
/// <summary>
/// Defines the interface methods that are available to all exporter components.
/// </summary>
public interface IExporter
{
/// <summary>
/// Determines whether the path to an entity should be considered critical. A critical
/// entity is one that MUST exist on the target system in order for the export/import to
/// succeed, as such a critical entity is always included.
/// </summary>
/// <param name="path">The path to the queued entity object that is being checked.</param>
/// <returns><c>true</c> if the path is critical; otherwise, <c>false</c>.</returns>
bool IsPathCritical( EntityPath path );
/// <summary>
/// Determines if the entity at the given path requires a new Guid value when it's imported
/// onto the target system. On import, if an entity of that type and Guid already exists then
/// it is not imported and a reference to the existing entity is used instead.
/// </summary>
/// <param name="path">The path to the queued entity object that is being checked.</param>
/// <returns><c>true</c> if the path requires a new Guid value; otherwise, <c>false</c></returns>
bool DoesPathNeedNewGuid( EntityPath path );
/// <summary>
/// Determines if the property at the given path should be followed to it's referenced entity.
/// This is called for both referenced entities and child entities.
/// </summary>
/// <param name="path">The path.</param>
/// <returns></returns>
bool ShouldFollowPathProperty( EntityPath path );
/// <summary>
/// Gets any custom references for the entity at the given path.
/// </summary>
/// <param name="parentEntity">The entity that will later be encoded.</param>
/// <param name="path">The path to the parent entity.</param>
/// <returns>A collection of references that should be applied to the encoded entity.</returns>
ICollection<Reference> GetUserReferencesForPath( IEntity parentEntity, EntityPath path );
}
}