/* */ protected void processEndpointConfig(Deployment dep, ServerEndpointMetaData sepMetaData, Class<?> wsClass, String linkName)
/* */ {
/* 63 */ String configName = null;
/* 64 */ String configFile = null;
/* */
/* 66 */ EndpointConfig anEndpointConfig = (EndpointConfig)wsClass.getAnnotation(EndpointConfig.class);
/* 67 */ if (anEndpointConfig != null)
/* */ {
/* 69 */ if (anEndpointConfig.configName().length() > 0) {
/* 70 */ configName = anEndpointConfig.configName();
/* */ }
/* 72 */ if (anEndpointConfig.configFile().length() > 0) {
/* 73 */ configFile = anEndpointConfig.configFile();
/* */ }
/* */ }
/* 76 */ JSEArchiveMetaData jseMetaData = (JSEArchiveMetaData)dep.getAttachment(JSEArchiveMetaData.class);
/* 77 */ if (jseMetaData != null)
/* */ {