e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 17 (0.009000000000000001 seconds)
Class: com.technoetic.xplanner.tags.IsUserInRoleTag  ©, Rating: 0% of 0, C3

52 skipBody = false; 53 } else { 54 String roles[] = role.split(","); 55 for (int i = 0; i < roles.length; i++) { 56 String role = roles[i];

Class: com.technoetic.xplanner.security.BasicSecurityFilter  ©, Rating: 0% of 0, C2

36 credentials = credentials.substring(BASIC_PREFIX.length()); 37 if (credentials != null) { 38 String[] userIdAndPassword = new String(Base64.decode(credentials.getBytes())).split(":"); 39 try { 40 authenticator.authenticate(request, userIdAndPassword[0], userIdAndPassword[1]);

jgoodies_animation  Class: com.jgoodies.animation.AnimationUtils  ©, Rating: 0% of 0, C1

69 */ 70 public static String[] splitTexts(String separatedTexts) { 71 return separatedTexts.split("\\|"); 72 } 73

Class: com.technoetic.xplanner.actions.XPlannerInitializationPlugin  ©, Rating: 0% of 0, C2

57 if (name.endsWith(".job")) { 58 String value = (String)schedulerProperties.get(name); 59 String[] fields = value.split(";"); 60 if (fields.length != 2) { 61 log.error("invalid job spec: " + name + "=" + value);

Class: org.apache.tomcat.util.compat.Jdk14Compat  ©, Rating: 0% of 0, C1

104 public String [] split(String path, String pat) { 105 return path.split(pat); 106 } 107 108

Class: com.technoetic.xplanner.tags.IsUserAuthorizedForAnyTag  ©, Rating: 0% of 0, C2

025 026 public int doStartTag() throws JspException { 027 String[] permissionArray = permissions.split(","); 028 Collection objects = getCollection(); 029 boolean isAuthorized = false;

Class: com.technoetic.xplanner.file.FileSystemImpl  ©, Rating: 0% of 0, C2

034 035 public Directory getDirectory(String path) throws HibernateException { 036 String[] pathElements = path.split("/"); 037 Directory dir = getRootDirectory(); 038 Session session = ThreadSession.get();

Class: com.technoetic.xplanner.charts.DataSampleData  ©, Rating: 0% of 0, C1

026 DefaultCategoryDataset data = new DefaultCategoryDataset(); 027 String[] aspectArray = aspects.split(","); 028 String[] categoryArray = categories.split(","); 029 for (int i = 0; i < categoryArray.length; i++) { 030 String category = categoryArray[i];

Class: com.technoetic.xplanner.charts.DataSampleData  ©, Rating: 0% of 0, C1

025 public Object produceDataset(Map map) throws DatasetProduceException { 026 DefaultCategoryDataset data = new DefaultCategoryDataset(); 027 String[] aspectArray = aspects.split(","); 028 String[] categoryArray = categories.split(","); 029 for (int i = 0; i < categoryArray.length; i++) {

Class: com.technoetic.xplanner.upgrade.TomcatUserImporter  ©, Rating: 0% of 0, C1

081 private void initializeRoles(Session session, User user, Person person) 082 throws HibernateException { 083 String[] roles = user.getRoles().split(","); 084 for (int i = 0; i < roles.length; i++) { 085 Role role = getRole(session, roles[i]);

Result Page:  1  |  2   Next