Search Results
OK to copy?
Examples 1 through 10 of
45 (0.097 seconds)
Class:
com.technoetic.xplanner.actions.IntegrationEmailNotifier
©,
Rating:
0% of 0,
C1
Class: com.technoetic.xplanner.actions.IntegrationEmailNotifier ©, Rating: 0% of 0, C1
Class: org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver ©, Rating: 0% of 0, C2
Class: org.apache.tomcat.util.digester.GenericParser ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.digester.GenericParser ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.digester.GenericParser ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.actions.XPlannerInitializationPlugin ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
Class: com.technoetic.xplanner.mail.EmailMessageImpl ©, Rating: 0% of 0, C1
Class: org.apache.tomcat.util.digester.XercesParser ©, Rating: 0% of 0, C1
22 email.setFrom((String)xplannerProperties.get().get("xplanner.mail.from"));
23 email.setRecipient(integration.getPersonId());
24 email.setCcRecipients((String)xplannerProperties.get().get("xplanner.integration.mail.cc"));
25 email.setSubject(resources.getMessage("integrations.notification.subject"));
26 String link = request.getScheme() + "://" + request.getServerName() + ":" +
Class: com.technoetic.xplanner.actions.IntegrationEmailNotifier ©, Rating: 0% of 0, C1
20 MessageResources resources = (MessageResources)request.getAttribute(Globals.MESSAGES_KEY);
21 EmailMessage email = EmailMessageFactory.createMessage();
22 email.setFrom((String)xplannerProperties.get().get("xplanner.mail.from"));
23 email.setRecipient(integration.getPersonId());
24 email.setCcRecipients((String)xplannerProperties.get().get("xplanner.integration.mail.cc"));
Class: org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver ©, Rating: 0% of 0, C2
72 String registeredPath = (String) it.next();
73 if (PathMatcher.match(registeredPath, urlPath)) {
74 return (String) this.mappings.get(registeredPath);
75 }
76 }
Class: org.apache.tomcat.util.digester.GenericParser ©, Rating: 0% of 0, C1
70 SAXParser parser = factory.newSAXParser();
71 String schemaLocation = (String)properties.get("schemaLocation");
72 String schemaLanguage = (String)properties.get("schemaLanguage");
73
74 try{
Class: org.apache.tomcat.util.digester.GenericParser ©, Rating: 0% of 0, C1
69 (SAXParserFactory)properties.get("SAXParserFactory");
70 SAXParser parser = factory.newSAXParser();
71 String schemaLocation = (String)properties.get("schemaLocation");
72 String schemaLanguage = (String)properties.get("schemaLanguage");
73
Class: org.apache.tomcat.util.digester.GenericParser ©, Rating: 0% of 0, C1
66 SAXNotRecognizedException{
67
68 SAXParserFactory factory =
69 (SAXParserFactory)properties.get("SAXParserFactory");
70 SAXParser parser = factory.newSAXParser();
Class: com.technoetic.xplanner.actions.XPlannerInitializationPlugin ©, Rating: 0% of 0, C2
56 String name = (String)propertyNames.nextElement();
57 if (name.endsWith(".job")) {
58 String value = (String)schedulerProperties.get(name);
59 String[] fields = value.split(";");
60 if (fields.length != 2) {
Class: com.technoetic.xplanner.XPlannerProperties ©, Rating: 0% of 0, C2
46 for (Iterator iterator = customProperties.keySet().iterator(); iterator.hasNext();) {
47 String key = (String)iterator.next();
48 properties.put(key, customProperties.get(key));
49 }
50 }
Class: com.technoetic.xplanner.mail.EmailMessageImpl ©, Rating: 0% of 0, C1
036 EmailMessageImpl() throws MessagingException {
037 Properties transportProperties = new Properties();
038 transportProperties.put("mail.smtp.host", new XPlannerProperties().get().get("xplanner.mail.smtp.host"));
039 Session session = Session.getDefaultInstance(transportProperties, null);
040 session.setDebug(log.isDebugEnabled());
Class: org.apache.tomcat.util.digester.XercesParser ©, Rating: 0% of 0, C1
158
159 String schemaLocation = (String)properties.get("schemaLocation");
160 String schemaLanguage = (String)properties.get("schemaLanguage");
161
162 try{