1 17 package org.alfresco.filesys.smb.dcerpc.server; 18 19 24 public class DCEPipeHandler 25 { 26 27 29 private static DCEHandler[] _handlers = { 30 new SrvsvcDCEHandler(), 31 null, null, new WkssvcDCEHandler(), 34 null, null, null, null, null, null, null }; 42 43 49 public final static DCEHandler getHandlerForType(int typ) 50 { 51 if (typ >= 0 && typ < _handlers.length) 52 return _handlers[typ]; 53 return null; 54 } 55 } 56 | Popular Tags |