*
* @param viewConfiguration the view configuration
* @return the client view config
*/
public static ViewConfig getClientViewConfig(ViewConfiguration viewConfiguration){
ViewConfig viewConfig= new ViewConfig();
viewConfig.setDisplayed(viewConfiguration.isDisplayed());
viewConfig.setStartX(viewConfiguration.getStartX());
viewConfig.setStartY(viewConfiguration.getStartY());
viewConfig.setViewHeight(viewConfiguration.getViewHeight());
viewConfig.setViewWidth(viewConfiguration.getViewWidth());
viewConfig.setViewLocationID(viewConfiguration.getViewLocationID());
return viewConfig;
}