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

org.nuisto.LoaderBaseScriptClass.groovy Maven / Gradle / Ivy

There is a newer version: 0.6.0-alpha-1
Show newest version
package org.nuisto

import groovy.util.logging.Slf4j

@Slf4j(category = 'org.nuisto.msa')
abstract class LoaderBaseScriptClass extends Script {
  ElementRule version(String version) {
    this.binding.elementRule.version(version)

    this.binding.elementRule = new ElementRule(this.binding.elementRule.builder)

    return this.binding.elementRule
  }

  ElementRule element(String name) {
    return this.binding.elementRule.element(name)
  }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy