Пример #1
0
 /**
  * Return a remote destination temp dir path for the given node. If specified, the node attribute
  * named {@value #FILE_COPY_DESTINATION_DIR} is used, otherwise a temp directory appropriate for
  * the os-family of the node is returned.
  *
  * @param node the node entry
  * @return a path to destination dir for the node
  */
 public static String getRemoteDirForNode(final INodeEntry node) {
   return util.getRemoteDirForNode(node);
 }
Пример #2
0
 /**
  * Return a remote destination temp dir path for the given node. If specified, the node attribute
  * named {@value #FILE_COPY_DESTINATION_DIR} is used, otherwise a temp directory appropriate for
  * the os-family of the node is returned.
  *
  * @param node the node entry
  * @param project project
  * @param framework framework
  * @return a path to destination dir for the node
  */
 public static String getRemoteDirForNode(
     final INodeEntry node, final IRundeckProject project, final IFramework framework) {
   return util.getRemoteDirForNode(node, project, framework);
 }