/**
  * Filter the query by a related \CustomerGroupAcl\Model\CustomerGroupAcl object
  *
  * @param \CustomerGroupAcl\Model\CustomerGroupAcl|ObjectCollection $customerGroupAcl The related object(s) to use as filter
  * @param string                                                    $comparison       Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildCustomerGroupAclI18nQuery The current query, for fluid interface
  */
 public function filterByCustomerGroupAcl($customerGroupAcl, $comparison = null)
 {
     if ($customerGroupAcl instanceof \CustomerGroupAcl\Model\CustomerGroupAcl) {
         return $this->addUsingAlias(CustomerGroupAclI18nTableMap::ID, $customerGroupAcl->getId(), $comparison);
     } elseif ($customerGroupAcl instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(CustomerGroupAclI18nTableMap::ID, $customerGroupAcl->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByCustomerGroupAcl() only accepts arguments of type \\CustomerGroupAcl\\Model\\CustomerGroupAcl or Collection');
     }
 }
 /**
  * Declares an association between this object and a ChildCustomerGroupAcl object.
  *
  * @param  ChildCustomerGroupAcl                        $v
  * @return \CustomerGroupAcl\Model\CustomerGroupAclI18n The current object (for fluent API support)
  * @throws PropelException
  */
 public function setCustomerGroupAcl(ChildCustomerGroupAcl $v = null)
 {
     if ($v === null) {
         $this->setId(null);
     } else {
         $this->setId($v->getId());
     }
     $this->aCustomerGroupAcl = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildCustomerGroupAcl object, it will not be re-added.
     if ($v !== null) {
         $v->addCustomerGroupAclI18n($this);
     }
     return $this;
 }