Created
June 1, 2010 14:49
-
-
Save dbonillaf/421019 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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