# encoding: utf-8 module Mongoid #:nodoc: module Extensions #:nodoc: module Binary #:nodoc: module Conversions #:nodoc: # Get the value from the db hash. def get(value) value end # Set the value in the db hash. def set(value) value end end end end end