diff --git a/ruby-runtime/lib/jenkins/model/unprotected_root_action.rb b/ruby-runtime/lib/jenkins/model/unprotected_root_action.rb new file mode 100644 index 0000000..9dfa432 --- /dev/null +++ b/ruby-runtime/lib/jenkins/model/unprotected_root_action.rb @@ -0,0 +1,8 @@ + +module Jenkins + module Model + class UnprotectedRootAction + include Jenkins::Model::Action + end + end +end diff --git a/ruby-runtime/lib/jenkins/model/unprotected_root_action_proxy.rb b/ruby-runtime/lib/jenkins/model/unprotected_root_action_proxy.rb new file mode 100644 index 0000000..c850263 --- /dev/null +++ b/ruby-runtime/lib/jenkins/model/unprotected_root_action_proxy.rb @@ -0,0 +1,7 @@ +module Jenkins::Model + class UnprotectedRootActionProxy + include ActionProxy + include Java.hudson.model.UnprotectedRootAction + proxy_for Jenkins::Model::UnprotectedRootAction + end +end