1 26 28 package de.nava.informa.core; 29 30 36 public interface CloudIF { 37 38 String getDomain(); 39 void setDomain(String domain); 40 41 int getPort(); 42 void setPort(int port); 43 44 String getPath(); 45 void setPath(String path); 46 47 String getRegisterProcedure(); 48 void setRegisterProcedure(String registerProcedure); 49 50 String getProtocol(); 51 void setProtocol(String protocol); 52 53 } 54 | Popular Tags |