Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
package com.ircim; import net.sf.ehcache.Cache; import net.sf.ehcache.CacheManager; import net.sf.ehcache.Element; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; /** * @ModelCoreReference [platform:/resource/IRCIMServices/.springDSL/com/ircim/IRCIMService/.properties.srv] * @generated */ @Service("IRCIMService") @Transactional public class IRCIMServiceImpl implements IRCIMService { /** * @ModelReference [platform:/resource/IRCIMServices/.springDSL/com/ircim/IRCIMService/.properties.srv#//@variables%5Bname='cacheManager'%5D] */ @Autowired CacheManager cacheManager; /** * @ModelReference [platform:/resource/IRCIMServices/.springDSL/com/ircim/IRCIMService/.properties.srv#//@variables%5Bname='lon'%5D] */ Integer lon = new Integer(-1); /** * @ModelReference [platform:/resource/IRCIMServices/.springDSL/com/ircim/IRCIMService/.properties.srv#//@variables%5Bname='value'%5D] */ volatile int value; /** * Instantiates a new IRCIMServiceImpl. * * @ModelReference [platform:/resource/IRCIMServices/.springDSL/com/ircim/IRCIMService/.properties.srv] * @AuxiliaryModelComponent */ public IRCIMServiceImpl() { } /** * @ModelReference [platform:/resource/IRCIMServices/.springDSL/com/ircim/IRCIMService/push%7Bf9d17626-a7c6-4989-8b8e-d471cb919940%7D/.properties.swoperation] */ @Transactional public Integer push(String text) { value++; //TODO Implement this method if (text == null) return lon; if (text.length() > 1024 * 1024) return lon; //final int time = value; //Cache test = singletonManager.getCache("testCache"); final Cache cache = cacheManager.getCache("texts"); cache.put(new Element(value, text)); //final Element object = cache.get(time); //System.out.println(value); return value; } /** * @ModelReference [platform:/resource/IRCIMServices/.springDSL/com/ircim/IRCIMService/get%7B8d04d4a1-5843-4eb2-bfe8-7c852fd898f9%7D/.properties.swoperation] */ @Transactional public String get(Integer uuid) { if (uuid == null) return null; final Cache cache = cacheManager.getCache("texts"); //System.out.println("Query:"+uuid); final Element texts = cache.get(uuid); if (texts == null) return null; return texts.getValue().toString(); } } |