added getter/setter to UIE schema-to-view map
parent
920b2a59ba
commit
a9d1799eda
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue