# File lib/openshift-origin-node/model/frontend_httpd.rb, line 29 def initialize(msg=nil, container_uuid=nil, container_name=nil, namespace=nil) @container_uuid = container_uuid @container_name = container_name @namespace = namespace super(msg) end
# File lib/openshift-origin-node/model/frontend_httpd.rb, line 36 def to_s m = super m+= ": #{@container_name}" if not @container_name.nil? m+= ": #{@namespace}" if not @namespace.nil? m end