class ActiveLdap::Adapter::JndiConnection::ModifyRecord

def to_java_attribute

def to_java_attribute
  attribute = BasicAttribute.new(@name)
  values = @values
  values = values.collect(&:to_java_bytes) if binary?
  values.each do |value|
    attribute.add(value)
  end
  attribute
end