Method: Jenkins::Plugin#linkout

Defined in:
lib/jenkins/plugin.rb

#linkout(internal, external) ⇒ Object

Link a plugin-local Ruby object to an external Java object.

see ‘Proxies#link`

Parameters:

  • internal (Object)

    the object on the Ruby side of the link

  • external (java.lang.Object)

    the object on the Java side of the link



185
186
187
# File 'lib/jenkins/plugin.rb', line 185

def linkout(internal, external)
  @proxies.linkout internal, external
end