1 24 package com.scalagent.kjoram; 25 26 30 public class FactoryParameters 31 { 32 33 private String host; 34 35 private int port; 36 37 42 public int connectingTimer = 0; 43 48 public int txPendingTimer = 0; 49 54 public int soapCnxPendingTimer = 0; 55 56 57 63 public FactoryParameters(String host, int port) 64 { 65 this.host = host; 66 this.port = port; 67 } 68 69 70 73 public String getHost() 74 { 75 return host; 76 } 77 78 79 public int getPort() 80 { 81 return port; 82 } 83 } 84 | Popular Tags |