diff --git a/src/main/java/org/springframework/hateoas/server/mvc/RepresentationModelAssemblerSupport.java b/src/main/java/org/springframework/hateoas/server/mvc/RepresentationModelAssemblerSupport.java index ea28811b..267557e0 100755 --- a/src/main/java/org/springframework/hateoas/server/mvc/RepresentationModelAssemblerSupport.java +++ b/src/main/java/org/springframework/hateoas/server/mvc/RepresentationModelAssemblerSupport.java @@ -89,6 +89,14 @@ public abstract class RepresentationModelAssemblerSupport getControllerClass() { + return this.controllerClass; + } + + protected Class getResourceType() { + return this.resourceType; + } + /** * Instantiates the resource object. Default implementation will assume a no-arg constructor and use reflection but * can be overridden to manually set up the object instance initially (e.g. to improve performance if this becomes an