Package org.apache.sshd.common.channel
Class PtyChannelConfiguration
- java.lang.Object
-
- org.apache.sshd.common.channel.PtyChannelConfiguration
-
- All Implemented Interfaces:
PtyChannelConfigurationHolder,PtyChannelConfigurationMutator
public class PtyChannelConfiguration extends Object implements PtyChannelConfigurationMutator
- Author:
- Apache MINA SSHD Project
-
-
Field Summary
-
Fields inherited from interface org.apache.sshd.common.channel.PtyChannelConfigurationHolder
DEFAULT_COLUMNS_COUNT, DEFAULT_HEIGHT, DEFAULT_PTY_MODES, DEFAULT_ROWS_COUNT, DEFAULT_WIDTH, DUMMY_PTY_TYPE, WINDOWS_PTY_TYPE
-
-
Constructor Summary
Constructors Constructor Description PtyChannelConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetPtyColumns()intgetPtyHeight()intgetPtyLines()Map<PtyMode,Integer>getPtyModes()StringgetPtyType()intgetPtyWidth()voidsetPtyColumns(int ptyColumns)voidsetPtyHeight(int ptyHeight)voidsetPtyLines(int ptyLines)voidsetPtyModes(Map<PtyMode,Integer> ptyModes)voidsetPtyType(String ptyType)voidsetPtyWidth(int ptyWidth)StringtoString()
-
-
-
Method Detail
-
getPtyType
public String getPtyType()
- Specified by:
getPtyTypein interfacePtyChannelConfigurationHolder
-
setPtyType
public void setPtyType(String ptyType)
- Specified by:
setPtyTypein interfacePtyChannelConfigurationMutator
-
getPtyColumns
public int getPtyColumns()
- Specified by:
getPtyColumnsin interfacePtyChannelConfigurationHolder
-
setPtyColumns
public void setPtyColumns(int ptyColumns)
- Specified by:
setPtyColumnsin interfacePtyChannelConfigurationMutator
-
getPtyLines
public int getPtyLines()
- Specified by:
getPtyLinesin interfacePtyChannelConfigurationHolder
-
setPtyLines
public void setPtyLines(int ptyLines)
- Specified by:
setPtyLinesin interfacePtyChannelConfigurationMutator
-
getPtyWidth
public int getPtyWidth()
- Specified by:
getPtyWidthin interfacePtyChannelConfigurationHolder
-
setPtyWidth
public void setPtyWidth(int ptyWidth)
- Specified by:
setPtyWidthin interfacePtyChannelConfigurationMutator
-
getPtyHeight
public int getPtyHeight()
- Specified by:
getPtyHeightin interfacePtyChannelConfigurationHolder
-
setPtyHeight
public void setPtyHeight(int ptyHeight)
- Specified by:
setPtyHeightin interfacePtyChannelConfigurationMutator
-
getPtyModes
public Map<PtyMode,Integer> getPtyModes()
- Specified by:
getPtyModesin interfacePtyChannelConfigurationHolder
-
setPtyModes
public void setPtyModes(Map<PtyMode,Integer> ptyModes)
- Specified by:
setPtyModesin interfacePtyChannelConfigurationMutator
-
-