e.g. Calendar Search Help
You must enter a value before pressing Search
Search Results OK to copy? Examples 1 through 10 of 226 (0.026000000000000002 seconds)
Class: org.springframework.beans.propertyeditors.ByteArrayPropertyEditor  ©, Rating: 0% of 0, C1

29 30 public void setAsText(String text) { 31 setValue(text.getBytes()); 32 } 33

Class: com.technoetic.xplanner.file.FileTest  ©, Rating: 0% of 0, C1

32 f1.setContentType("text/plain"); 33 f1.setName(name); 34 f1.setData(new BlobImpl("DATA".getBytes())); 35 session.save(f1); 36 d.getFiles().add(f1);

Class: org.springframework.orm.ibatis.support.BlobByteArrayTypeHandler  ©, Rating: 0% of 0, C1

67 68 public Object valueOf(String s) { 69 return s.getBytes(); 70 } 71

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]);

Class: com.technoetic.xplanner.security.CredentialCookie  ©, Rating: 0% of 0, C1

42 43 public String getPassword() { 44 return password != null 45 ? new String(Base64.decode(password.getValue().getBytes())) 46 : null;

Class: com.technoetic.xplanner.security.CredentialCookie  ©, Rating: 0% of 0, C1

24 public void set(String userId, String password) { 25 response.addCookie(createCookie(CredentialCookie.USERID_COOKIE_NAME, userId)); 26 response.addCookie(createCookie(CredentialCookie.PASSWORD_COOKIE_NAME, 27 new String(Base64.encode(password.getBytes())))); 28 }

Class: org.apache.jk.common.WorkerDummy  ©, Rating: 0% of 0, C1

34 { 35 String msg="HelloWorld"; 36 byte b[]=msg.getBytes(); 37 body.setBytes(b, 0, b.length); 38 }

Class: org.springframework.beans.propertyeditors.PropertiesEditor  ©, Rating: 0% of 0, C1

54 Properties props = new Properties(); 55 try { 56 props.load(new ByteArrayInputStream(text.getBytes())); 57 dropComments(props); 58 }

Class: org.apache.axis.attachments.PlainTextDataSource  ©, Rating: 0% of 0, C1

72 public PlainTextDataSource(String name, String data) { 73 this.name = name; 74 this.data = data == null ? null : data.getBytes(); 75 os = new ByteArrayOutputStream(); 76 } // ctor

Class: org.apache.axis.configuration.XMLStringProvider  ©, Rating: 0% of 0, C1

101 102 public void configureEngine(AxisEngine engine) throws ConfigurationException { 103 setInputStream(new ByteArrayInputStream(xmlConfiguration.getBytes())); 104 super.configureEngine(engine); 105 }

Result Page:  1  |  2  |  3  |  4  |  5  |  6  |  7  |  8  |  9  |  10   Next