*
*/
public static String[][] getInExProperties(JavaMethodImpl methodImpl){
JSONWebService jsonService = methodImpl.getMethod().getAnnotation(JSONWebService.class);
if(jsonService != null){
return new String[][]{jsonService.includeProperties(),jsonService.excludeProperties()};
}
// default codec level
return new String[][]{{},{}};
}