Sha256: 447210e00fcf43f962dad7d93a8901ef758d53cb4a17888d9a2bd2236664d5c1

Contents?: true

Size: 960 Bytes

Versions: 17

Compression:

Stored size: 960 Bytes

Contents

#
# Copyright 2011 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

module Backstage
  module TorqueBoxManaged
    def name
      return mbean.name if mbean.respond_to?( :name )
      $1 if full_name =~ /name=(.*?)(,|$)/
    end

    def app_name
      $1 if full_name =~ /app=(.*?)(,|$)/
    end

    def app
      App.find( "torquebox.apps:app=#{app_name}" )
    end
    
    def status
      mbean.status.downcase.capitalize
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
torquebox-backstage-0.5.4 lib/torquebox_managed.rb
torquebox-backstage-0.5.3 lib/torquebox_managed.rb
torquebox-backstage-0.5.2 lib/torquebox_managed.rb
torquebox-backstage-0.5.1 lib/torquebox_managed.rb
torquebox-backstage-0.5 lib/torquebox_managed.rb
torquebox-backstage-0.4.3 lib/torquebox_managed.rb
torquebox-backstage-0.4.2 lib/torquebox_managed.rb
torquebox-backstage-0.4.1 lib/torquebox_managed.rb
torquebox-backstage-0.4.0 lib/torquebox_managed.rb
torquebox-backstage-0.3.2 lib/torquebox_managed.rb
torquebox-backstage-0.3.1 lib/torquebox_managed.rb
torquebox-backstage-0.3.0 lib/torquebox_managed.rb
torquebox-backstage-0.2.1 lib/torquebox_managed.rb
torquebox-backstage-0.2.0 lib/torquebox_managed.rb
torquebox-backstage-0.1.2 lib/torquebox_managed.rb
torquebox-backstage-0.1.1 lib/torquebox_managed.rb
torquebox-backstage-0.1.0 lib/torquebox_managed.rb