Subversion Repositories SmartDukaan

Rev

Rev 462 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 462 Rev 555
Line 53... Line 53...
53
	public HttpHeaders show(){
53
	public HttpHeaders show(){
54
		getFields();
54
		getFields();
55
		Map<PageContentKeys, String> params = new HashMap<PageContentKeys, String>();
55
		Map<PageContentKeys, String> params = new HashMap<PageContentKeys, String>();
56
		params.put(PageContentKeys.ENTITY_ID, entity_id);
56
		params.put(PageContentKeys.ENTITY_ID, entity_id);
57
		params.put(PageContentKeys.CUSTOMER_ID, customer_id);
57
		params.put(PageContentKeys.CUSTOMER_ID, customer_id);
58
		params.put(PageContentKeys.IS_SESSION_ID, is_session_id);
58
		params.put(PageContentKeys.IS_LOGGED_IN, is_session_id);
59
		PageManager.getPageManager().getPageContents(PageEnum.BROWSE_HISTORY, params);
59
		PageManager.getPageManager().getPageContents(PageEnum.BROWSE_HISTORY, params);
60
		//return new DefaultHttpHeaders("index").disableCaching();
60
		//return new DefaultHttpHeaders("index").disableCaching();
61
		return new DefaultHttpHeaders("show");
61
		return new DefaultHttpHeaders("show");
62
	}
62
	}
63
	
63