module PIM::Services::ZipService

Public Instance Methods

__zip_service() click to toggle source
# File services.rb, line 2812
def __zip_service
  __service(:zipService)
end
add_to_zip(asset_or_url, zip_file, target_path = nil) click to toggle source
# File services.rb, line 2800
def add_to_zip asset_or_url, zip_file, target_path = nil
   if asset_or_url.is_a? String
     __zip_service.addGatheringByUrlToZip(asset_or_url, zip_file, target_path)
   elsif asset_or_url.is_a? com.lansa.lax.pim.DigitalAsset
     __zip_service.addGatheringToZip(asset_or_url, zip_file, target_path)
   end
end
create_zip(out) click to toggle source
# File services.rb, line 2796
def create_zip out
  __zip_service.createZip(out)
end
zip_gathering(gathering_key, out) click to toggle source
# File services.rb, line 2808
def zip_gathering gathering_key, out
  __zip_service.zipGathering(gathering_key, out)
end