Class: Zm::Client::CosesCollection

Inherits:
Base::AdminObjectsCollection show all
Defined in:
lib/zm/client/cos/coses_collection.rb

Overview

Collection coses

Constant Summary

Constants inherited from Base::ObjectsCollection

Base::ObjectsCollection::METHODS_MISSING_LIST

Instance Attribute Summary

Attributes inherited from Base::ObjectsCollection

#parent

Instance Method Summary collapse

Methods inherited from Base::AdminObjectsCollection

#attrs, #clear, #count, #find_by, #find_by_or_nil, #find_each, #ldap, #where

Methods inherited from Base::ObjectsCollection

#all, #all!, #find, #first, #logger, #method_missing, #new, #order, #page, #per_page, #respond_to_missing?

Methods included from Inspector

#inspect, #instance_variables_map, #to_h, #to_s

Constructor Details

#initialize(parent) ⇒ CosesCollection

Returns a new instance of CosesCollection.



7
8
9
10
11
12
# File 'lib/zm/client/cos/coses_collection.rb', line 7

def initialize(parent)
  @child_class = Cos
  @builder_class = CosesBuilder
  @search_type = SearchType::COS
  super(parent)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Zm::Client::Base::ObjectsCollection

Instance Method Details

#clone!(new_name, &block) ⇒ Object



25
26
27
28
# File 'lib/zm/client/cos/coses_collection.rb', line 25

def clone!(new_name, &block)
  cos = Cos.new(parent, &block)
  cos.clone!(new_name)
end

#find_by!(hash) ⇒ Object



14
15
16
17
18
19
20
21
22
23
# File 'lib/zm/client/cos/coses_collection.rb', line 14

def find_by!(hash)
  soap_request = SoapElement.admin(SoapAdminConstants::GET_COS_REQUEST)
  node_cos = SoapElement.create(SoapConstants::COS).add_attribute(SoapConstants::BY, hash.keys.first).add_content(hash.values.first)
  soap_request.add_node(node_cos)
  soap_request.add_attribute(SoapConstants::ATTRS, attrs_comma)
  entry = sac.invoke(soap_request)[:GetCosResponse][:cos].first

  reset_query_params
  CosJsnsInitializer.create(@parent, entry)
end