summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/schema/fieldoperation/IdOperation.java
blob: 5e62742085f45098ab64d4abf26378adafe51a40 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.schema.fieldoperation;

import com.yahoo.schema.document.SDDocumentType;
import com.yahoo.schema.document.SDField;

/**
 * @author Einar M R Rosenvinge
 */
public class IdOperation implements FieldOperation {

    private SDDocumentType document;
    private int fieldId;

    public SDDocumentType getDocument() {
        return document;
    }

    public void setDocument(SDDocumentType document) {
        this.document = document;
    }

    public int getFieldId() {
        return fieldId;
    }

    public void setFieldId(int fieldId) {
        this.fieldId = fieldId;
    }

    public void apply(SDField field) {
         document.setFieldId(field, fieldId);
    }

}