Examples of IBlackListServices


Examples of com.foxconn.gds.security.facade.IBlackListServices

public class BlackListServicesTest {

  @Test
  public void testCreateBlackItem() {
    IBlackListServices blackSrv = BlackListServices.getInstance();
    BlackItem blackItem = new BlackItem("1-acc-0", BlackItem.UserStatus.PENDING, "http://10.148.73.52:8080/FHS/redirectPage.jsp");
    blackSrv.createBlackItem(blackItem);
  }
View Full Code Here

Examples of com.foxconn.gds.security.facade.IBlackListServices

    fail("Not yet implemented");
  }

  @Test
  public void testFindBlackItemByUserId() {
    IBlackListServices blackSrv = BlackListServices.getInstance();
    blackSrv.findBlackItemByUserId("0-acc-0");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.