missed this in the java payload updates, r10781

git-svn-id: file:///home/svn/framework3/trunk@10786 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2010-10-22 20:40:25 +00:00
parent 3b2c43fac4
commit 27cc50f29a
1 changed files with 9 additions and 1 deletions

View File

@ -305,11 +305,19 @@ class EncodedPayload
def encoded_exe(opts={})
# do something with Util::EXE
raise NotImplementedError
end
def encoded_jar
def encoded_war(opts={})
return pinst.generate_war if pinst.respond_to? :generate_war
# do something with Util::EXE
raise NotImplementedError
end
def encoded_jar(opts={})
return pinst.generate_jar if pinst.respond_to? :generate_jar
# do something with Util::EXE
raise NotImplementedError
end