01: package com.def.webstore;
02:
03: import org.apache.commons.logging.Log;
04: import org.apache.commons.logging.LogFactory;
05:
06: /**
07: * @author Adrian Price
08: */
09: public class DEFProcedures {
10: private static final Log _logger = LogFactory
11: .getLog(DEFProcedures.class);
12:
13: public static String lookupAccount(String userId) {
14: _logger.info("lookupAccount(" + userId + ')');
15: return "A" + userId;
16: }
17: }
|