com.nedap.archie.rules.QueryVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aom Show documentation
Show all versions of aom Show documentation
An OpenEHR archetype object model implementation, plus parser
package com.nedap.archie.rules;
/**
* Created by pieter.bos on 27/10/15.
*/
public class QueryVariable extends VariableDeclaration {
private String context;
private String queryId;
private String queryArgs;
public String getContext() {
return context;
}
public void setContext(String context) {
this.context = context;
}
public String getQueryId() {
return queryId;
}
public void setQueryId(String queryId) {
this.queryId = queryId;
}
public String getQueryArgs() {
return queryArgs;
}
public void setQueryArgs(String queryArgs) {
this.queryArgs = queryArgs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy