Add runtime.ObjectConvertor to RESTMapper

This commit is contained in:
Clayton Coleman
2014-11-02 09:31:29 -05:00
parent dc862ae463
commit f0c23d68f7
4 changed files with 15 additions and 3 deletions

View File

@@ -23,6 +23,7 @@ import (
// VersionInterfaces contains the interfaces one should use for dealing with types of a particular version.
type VersionInterfaces struct {
runtime.Codec
runtime.ObjectConvertor
MetadataAccessor
}
@@ -86,6 +87,7 @@ type RESTMapping struct {
Kind string
runtime.Codec
runtime.ObjectConvertor
MetadataAccessor
}