Subversion Repositories SmartDukaan

Rev

Rev 1379 | Rev 1584 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1379 Rev 1443
Line 27... Line 27...
27
	
27
	
28
	private static final String LEARNED_BULLETS = "LEARNED_BULLETS";
28
	private static final String LEARNED_BULLETS = "LEARNED_BULLETS";
29
	private static final String DEFAULT_ENTITY_SCORES = "DEFAULT_ENTITY_SCORES";
29
	private static final String DEFAULT_ENTITY_SCORES = "DEFAULT_ENTITY_SCORES";
30
	private static final String FACET_VALUES = "FACET_VALUES";
30
	private static final String FACET_VALUES = "FACET_VALUES";
31
	private static final String SLIDE_SCORES = "SLIDE_SCORES";
31
	private static final String SLIDE_SCORES = "SLIDE_SCORES";
-
 
32
	private static final String CONTENT_GENERATION_TIME = "CONTENT_GENERATION_TIME";
32
	
33
	
33
 
34
 
34
	/**
35
	/**
35
	 * 
36
	 * 
36
	 * @param aThrowable
37
	 * @param aThrowable
Line 174... Line 175...
174
		}
175
		}
175
		return objScore;
176
		return objScore;
176
	}
177
	}
177
	
178
	
178
	
179
	
-
 
180
	/**
-
 
181
	 * 
-
 
182
	 * @return
-
 
183
	 * @throws Exception
-
 
184
	 */
-
 
185
	public static Long getLastContentGenerationTime() throws Exception {
-
 
186
		return (Long) StorageManager.getStorageManager().getDataObject(CreationUtils.CONTENT_GENERATION_TIME);
-
 
187
	}
179
	
188
	
180
	/**
189
	/**
-
 
190
	 * 
-
 
191
	 * @param storageTime
-
 
192
	 * @throws Exception
-
 
193
	 */
-
 
194
	public static void storeLastContentGenerationTime(Long storageTime) throws Exception {
-
 
195
		StorageManager.getStorageManager().storeDataObject(CreationUtils.CONTENT_GENERATION_TIME, storageTime);
-
 
196
	}
-
 
197
	/**
181
	 * Resolves Entity ID into Entity object
198
	 * Resolves Entity ID into Entity object
182
	 * 
199
	 * 
183
	 * @param entityID
200
	 * @param entityID
184
	 * @return Entity
201
	 * @return Entity
185
	 * @throws Exception 
202
	 * @throws Exception