class SML::PublicClose::Request

Attributes

global_signature[RW]

Public Class Methods

construct(array_rep) click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 13
def self.construct(array_rep)
  return nil if array_rep.nil?
  return SML::PublicClose::Request.new(array_rep.shift)
end
new(global_signature) click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 9
def initialize(global_signature)
  @global_signature = global_signature
end
pconstruct(o={}) click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 18
def self.pconstruct(o={})
  return SML::PublicClose::Request.new(o[:global_signature])
end

Public Instance Methods

to_a() click to toggle source
# File lib/ruby-sml/sml-publicclose.rb, line 22
def to_a
  return [] << global_signature
end