Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

User interaction and design

Code Block
languagejava
titleResource.java
/**
 * When displaying just one Group, render a subset of attributes in a table.
 */
@RestMethod(
    name="GET",
    path="/{path}",
    templates={
		"Group: Group.table.ftl"
	}
)
public Group viewGroup( RestRequest req,
                        @Path String path) {
}
 
/**
 * When displaying a list of Groups, render a different subset of attributes per row.
 */
@RestMethod(
    name="GET",
    path="/",
    templates={
		"Group: Group.div.ftl"
	}
)
public List<GroupHtml> listGroups() throws IOException {


}




Questions

Below is a list of questions to be addressed as a result of this requirements document:

...