1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
package com.ibm.as400.access;
import java.net.UnknownHostException;
public class ToolboxSignonHandler implements SignonHandler {
public boolean connectionInitiated(SignonEvent event, boolean forceUpdate) {
// TODO Auto-generated method stub
return false;
}
public void exceptionOccurred(SignonEvent event)
throws AS400SecurityException {
// TODO Auto-generated method stub
}
public boolean passwordAboutToExpire(SignonEvent event,
int daysUntilExpiration) {
// TODO Auto-generated method stub
return false;
}
public boolean passwordExpired(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean passwordIncorrect(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean passwordLengthIncorrect(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean passwordMissing(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean systemNameMissing(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean systemNameUnknown(SignonEvent event, UnknownHostException exc) {
// TODO Auto-generated method stub
return false;
}
public boolean userIdDefaultAlreadyAssigned(SignonEvent event,
String defaultUser) {
// TODO Auto-generated method stub
return false;
}
public boolean userIdAboutToBeDisabled(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean userIdDisabled(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean userIdLengthIncorrect(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean userIdMissing(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
public boolean userIdUnknown(SignonEvent event) {
// TODO Auto-generated method stub
return false;
}
}
|