Inner class
From Abap2Java
[edit]
ABAP
see Local Class
[edit]
Java
import java.net.Authenticator;
import java.net.PasswordAuthentication;
public class C {
static class PopupAuthenticator extends Authenticator {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("Username", "password".toCharArray());
}
}
}

