Advertisement
Guest User

Untitled

a guest
Oct 4th, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. for (Reservation reservation : reservations) {
  2. for (Instance instance1 : reservation.getInstances()) {
  3.  
  4. dns = instance1.getPublicDnsName();
  5. if(!(dns.equals("")))
  6. {
  7.  
  8. break;
  9. }
  10.  
  11.  
  12. }
  13. }
  14. System.out.println("value:" + dns);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement