summaryrefslogtreecommitdiff
path: root/same/src/main/java/com/orbekk/same/Types.java
blob: 176474205035d460cfe6a71624b02eda2c9667ab (plain)
1
2
3
4
5
6
7
8
9
10
package com.orbekk.same;

import org.codehaus.jackson.type.TypeReference;

public class Types {
    public final static TypeReference<String> STRING =
            new TypeReference<String>() {};
    public final static TypeReference<Integer> INTEGER =
            new TypeReference<Integer>() {};
}