1 16 17 package org.apache.jetspeed.services.webpage; 18 19 23 public interface Site 24 { 25 26 31 public long getID(); 32 33 38 public String getURL(); 39 40 45 public String getName(); 46 47 52 public String getUserName(); 53 54 59 public String getPassword(); 60 61 66 public int getStatus(); 67 72 public void setStatus(int status); 73 74 79 public boolean isSecured(); 80 81 } 82 | Popular Tags |