All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nedap.archie.rules.OperatorDef Maven / Gradle / Ivy

package com.nedap.archie.rules;

import com.nedap.archie.aom.ArchetypeModelObject;

/**
 * Operator Def used to conform to the newer expression language specification. Not used except for json (de)serialization
 * use OperatorKind instead!
 */
public abstract class OperatorDef extends ArchetypeModelObject {
    private String identifier;

    public OperatorDef() {

    }

    public OperatorDef(String identifier) {
        this.identifier = identifier;
    }

    public String getIdentifier() {
        return identifier;
    }

    public void setIdentifier(String identifier) {
        this.identifier = identifier;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy