📄 netboxupdatable.java
字号:
package no.ntnu.nav.getDeviceData.dataplugins;/** * <p> Allowed some items of a Netbox to be updated. The Netbox object * can be casted to this class, and by doing the cast the intention to * do updates it is made explicit. </p> */ public interface NetboxUpdatable{ /** * Set the sysname of the netbox. */ public void setSysname(String sysname); /** * Return the typeid for the type. Normally only required if you * want to make updates to the database directly. */ public String getTypeid(); /** * Call this to force recreation of the netbox. It will be deleted * from the database, along with any additional information, and a * new record started. */ public void refetch(); public void restart(); public void setSnmpVersion(int snmpVersion); /** * <p> Remove the netbox; calling this method guarantees that no * other plugins will process it. This method is typically used if * the netbox is deleted from the database. </p> * * @param updateNetboxes Specifies if a new netbox has been added to * the database and gDD needs to update itself. * */ //public void remove(boolean updateNetboxes);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -