EGI-FCTF/rOCCI-server

View on GitHub
app/lib/backends/dummy/compute.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'backends/dummy/entity_base'

module Backends
  module Dummy
    class Compute < EntityBase
      class << self
        # @see `served_class` on `Entitylike`
        def served_class
          Occi::Infrastructure::Compute
        end

        # :nodoc:
        def entity_identifier
          Occi::Infrastructure::Constants::COMPUTE_KIND
        end
      end
    end
  end
end