Examples of GetDeletedDomains


Examples of com.dgwave.osrs.req.GetDeletedDomains

  }
 
  @Test
  public void testGetDeleteDomains() {
    try {
      GetDeletedDomains req = new GetDeletedDomains();
      DateFormat dfm = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
      req.setDeletedTo(dfm.parse("2031-09-04 13:00:00"));
      OsrsResponse response = client.sendReceive(req);
      assertNotNull(response);
      System.out.println(response);
     
      List<DeletedDomain> delDomainList = ((DeletedDomainsResponse)response).getDeletedDomains();
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.