@@ -135,11 +135,11 @@ class Environment implements RepositoryProvider {
135135 def List<KeyValue <${attribute.type} >> listPrefix(String key, String prefix) {
136136 return ${entity.classname} Descriptor.this.reader.list(key, desc.toAttributePrefix() + prefix)
137137 }
138- def void put(String key, String attribute, String jsonValue ) {
139- console.put(${entity.classname} Descriptor.this.desc, desc, key, desc.toAttributePrefix() + attribute, jsonValue )
138+ def void put(String key, String attribute, Object value ) {
139+ console.put(${entity.classname} Descriptor.this.desc, desc, key, desc.toAttributePrefix() + attribute, value )
140140 }
141- def void put(String key, String attribute, long stamp, String jsonValue ) {
142- console.put(${entity.classname} Descriptor.this.desc, desc, key, desc.toAttributePrefix() + attribute, stamp, jsonValue )
141+ def void put(String key, String attribute, long stamp, Object value ) {
142+ console.put(${entity.classname} Descriptor.this.desc, desc, key, desc.toAttributePrefix() + attribute, stamp, value )
143143 }
144144 def void delete(String key, String attribute) {
145145 console.delete(${entity.classname} Descriptor.this.desc, desc, key, desc.toAttributePrefix() + attribute)
0 commit comments