public class SearchManagerBean extends SimpleAdminBean
m_enginem_beanInfo| Constructor and Description |
|---|
SearchManagerBean(Engine engine) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
doGet(Context context)
By default, this method creates a blob of HTML, listing
all the attributes which can be read or written to.
|
java.lang.String |
doPost(Context context)
Not implemented yet.
|
java.lang.String[] |
getAttributeNames()
This method must return a list of attributes which are
exposed by the SimpleMBean.
|
java.lang.String[] |
getMethodNames()
This method must return a list of operations which
are to be exposed by the SimpleMBean.
|
java.lang.String |
getTitle()
Return a human-readable title for this AdminBean.
|
int |
getType()
Returns a type (UNKNOWN, EDITOR, etc).
|
void |
reload()
Starts a background thread which goes through all the pages and adds them to the reindex queue.
|
getId, initializegetAttribute, getAttributes, getDescription, getMBeanInfo, invoke, setAttribute, setAttributespublic SearchManagerBean(Engine engine) throws javax.management.NotCompliantMBeanException
javax.management.NotCompliantMBeanExceptionpublic java.lang.String[] getAttributeNames()
SimpleMBean
public void setFoo( String foo ) ...
public String getFoo() ...
public String[] getAttributeNames()
{
String[] attrs = { "foo" };
return attrs;
}
Also, methods starting with "is" are also recognized as getters
(e.g. public boolean isFoo().)getAttributeNames in class SimpleMBeanpublic java.lang.String[] getMethodNames()
SimpleMBeangetMethodNames in class SimpleMBeanpublic java.lang.String getTitle()
AdminBeanpublic void reload()
This method prevents itself from being called twice.
public int getType()
AdminBeanpublic java.lang.String doGet(Context context)
SimpleAdminBeandoGet in interface GenericHTTPHandlerdoGet in class SimpleAdminBeancontext - associated WikiContextpublic java.lang.String doPost(Context context)
SimpleAdminBeandoPost in interface GenericHTTPHandlerdoPost in class SimpleAdminBeancontext - associated WikiContextCopyright (c) 2001-2022 The Apache Software Foundation. All rights reserved.