class CPEE::Properties::PutExecutionHandler

Public Class Methods

set(id,opts,hw) click to toggle source
# File lib/cpee/implementation_properties.rb, line 332
def self::set(id,opts,hw)
  CPEE::Persistence::set_item(id,opts,'executionhandler',:executionhandler => hw)
end

Public Instance Methods

response() click to toggle source
# File lib/cpee/implementation_properties.rb, line 335
def response
  id = @a[0]
  opts = @a[1]
  if opts[:statemachine].readonly? id
    @status = 423
  else
    PutExecutionHandler::set(id,opts,@p[0].value)
  end
  nil
end