if (CompositeContext.class.equals(paramType)) {
String name = method.getName();
if (name.startsWith("set")) {
name = JavaIntrospectionHelper.toPropertyName(name);
}
JavaMappedProperty property = new JavaMappedProperty();
property.setName(name);
property.setMember(method);
throw new UnsupportedOperationException();
// TODO pass in composite context
//SingletonObjectFactory factory = new SingletonObjectFactory(compositeContext);
//property.setDefaultValueFactory(factory);
//type.getProperties().put(name,property);
} else if (RequestContext.class.equals(paramType)) {
String name = method.getName();
if (name.startsWith("set")) {
name = JavaIntrospectionHelper.toPropertyName(name);
}
JavaMappedProperty property = new JavaMappedProperty();
property.setName(name);
property.setMember(method);
throw new UnsupportedOperationException();
// TODO pass in request context
//property.setDefaultValueFactory(factory);
//type.getProperties().put(name,property);
} else {