added getter/setter to UIE schema-to-view map

pull/210/head
Justin Richer 2012-09-11 12:44:47 -04:00
parent 920b2a59ba
commit a9d1799eda
1 changed files with 14 additions and 0 deletions

View File

@ -103,4 +103,18 @@ public class UserInfoEndpoint {
}
/**
* @return the schemaToViewNameMap (defaults to an immutable map)
*/
public Map<String, String> getSchemaToViewNameMap() {
return schemaToViewNameMap;
}
/**
* @param schemaToViewNameMap the schemaToViewNameMap to set
*/
public void setSchemaToViewNameMap(Map<String, String> schemaToViewNameMap) {
this.schemaToViewNameMap = schemaToViewNameMap;
}
}