package com.mycompany.app; class Nips{ String ip; int port; String getDestIp(){ return ip; } int getDestPort(){ return port; } void SetDestIp(String str){ ip = str; } void SetDestPort(int num){ port = num; } }