use of org.talend.esb.sam.common.handler.impl.PasswordHandler in project tesb-rt-se by Talend.
the class PasswordHandlerTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
ArrayList<String> list = new ArrayList<String>();
list.add("password");
list.add("customer");
passwordHandler = new PasswordHandler();
passwordHandler.setTagnames(list);
event = new Event();
}
Aggregations