📄 jndimapmbean.java
字号:
package org.jboss.book.jmx.ex1;import javax.naming.NamingException;/** An example MBean that implicitly implements the Service interface methods. This is version 1 as shown in Listing 2.7. */public interface JNDIMapMBean{ public String getJndiName(); public void setJndiName(String jndiName) throws NamingException; public String[] getInitialValues(); public void setInitialValues(String[] keyValuePairs); public void start() throws Exception; public void stop() throws Exception;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -