class RubyAem::Resources::AemConfigMgr

AEM class contains API calls related to managing the AEM instance itself.

Public Class Methods

new(client) click to toggle source

Initialise an AEM instance.

@param client RubyAem::Client @return new RubyAem::Resources::Aem instance

# File lib/ruby_aem/resources/aem_configmgr.rb, line 27
def initialize(client)
  @client = client
  @call_params = {
  }
end

Public Instance Methods

get() click to toggle source

Connect to AEM /system/console/configMgr to collect all configuration nodes

@return RubyAem::Result

# File lib/ruby_aem/resources/aem_configmgr.rb, line 37
def get
  @client.call(self.class, __callee__.to_s, @call_params)
end