Skip to content

Instantly share code, notes, and snippets.

@dbonillaf
Created June 1, 2010 14:49
Show Gist options
  • Save dbonillaf/421019 to your computer and use it in GitHub Desktop.
Save dbonillaf/421019 to your computer and use it in GitHub Desktop.
package com.six.test;
import javax.ejb.Stateless;
/**
* Esta clase es tan tonta que me da verguenza
* @author david
*/
@Stateless
public class Renombrador {
public String renombra(){
return "Nuevo nombre del Cliente: " + System.currentTimeMillis();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment