View Javadoc
1   package com.kodexa.client;
2   
3   import lombok.Data;
4   
5   import java.io.Serializable;
6   import java.util.ArrayList;
7   import java.util.List;
8   
9   /**
10   * A feature set is a natural way to pass around features that are related to a specific
11   * Document.
12   * <p>
13   * This is a lightweight way to think about moving just features, when the structure of the document has not been modified
14   */
15  @Data
16  public class FeatureSet implements Serializable {
17  
18      private String ownerUri;
19  
20      private List<NodeFeatures> nodeFeatures = new ArrayList<>();
21  
22  }