1 16 package org.apache.commons.net.telnet; 17 18 24 public class SimpleOptionHandler extends TelnetOptionHandler 25 { 26 38 public SimpleOptionHandler(int optcode, 39 boolean initlocal, 40 boolean initremote, 41 boolean acceptlocal, 42 boolean acceptremote) 43 { 44 super(optcode, initlocal, initremote, 45 acceptlocal, acceptremote); 46 } 47 48 54 public SimpleOptionHandler(int optcode) 55 { 56 super(optcode, false, false, false, false); 57 } 58 59 67 public int[] answerSubnegotiation(int suboptionData[], int suboptionLength) 68 { 69 return null; 70 } 71 72 77 public int[] startSubnegotiationLocal() 78 { 79 return null; 80 } 81 82 87 public int[] startSubnegotiationRemote() 88 { 89 return null; 90 } 91 } 92 | Popular Tags |