DATAKV-36

+ rename .mapper package to .hash to better reflect its function
This commit is contained in:
Costin Leau
2011-03-08 20:12:03 +02:00
parent 6496c37e46
commit 0acf1051c7
4 changed files with 5 additions and 5 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.keyvalue.redis.mapper;
package org.springframework.data.keyvalue.redis.hash;
import java.util.Map;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.keyvalue.redis.mapper;
package org.springframework.data.keyvalue.redis.hash;
import java.util.Map;

View File

@@ -22,7 +22,7 @@ import java.util.Map;
import org.junit.Test;
import org.springframework.data.keyvalue.redis.Address;
import org.springframework.data.keyvalue.redis.Person;
import org.springframework.data.keyvalue.redis.mapper.HashMapper;
import org.springframework.data.keyvalue.redis.hash.HashMapper;
/**
* @author Costin Leau

View File

@@ -15,8 +15,8 @@
*/
package org.springframework.data.keyvalue.redis.mapping;
import org.springframework.data.keyvalue.redis.mapper.HashMapper;
import org.springframework.data.keyvalue.redis.mapper.JacksonHashMapper;
import org.springframework.data.keyvalue.redis.hash.HashMapper;
import org.springframework.data.keyvalue.redis.hash.JacksonHashMapper;
public class JacksonHashMapperTest extends AbstractHashMapperTest {