Package com.mendix.m2ee.api
Class AdminAction
- java.lang.Object
-
- com.mendix.m2ee.api.AdminAction
-
- All Implemented Interfaces:
java.lang.Cloneable
public abstract class AdminAction extends java.lang.Object implements java.lang.CloneableThis class is meant for internal use only. Represents an admin action to be executed by the runtime. The subclass should be immutable.
-
-
Constructor Summary
Constructors Constructor Description AdminAction(java.lang.String name)AdminAction(java.lang.String name, java.lang.String description)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AdminActionclone()Deprecated.since 9.24.abstract com.mendix.thirdparty.org.json.JSONObjectexecute(com.mendix.thirdparty.org.json.JSONObject params)java.lang.StringgetDescription()java.lang.StringgetName()
-
-
-
Method Detail
-
execute
public abstract com.mendix.thirdparty.org.json.JSONObject execute(com.mendix.thirdparty.org.json.JSONObject params) throws AdminException, com.mendix.thirdparty.org.json.JSONException- Throws:
AdminExceptioncom.mendix.thirdparty.org.json.JSONException
-
getName
public final java.lang.String getName()
-
getDescription
public final java.lang.String getDescription()
-
clone
@Deprecated public AdminAction clone()
Deprecated.since 9.24. Do not use, there is no alternative.Clone this AdminAction.- Overrides:
clonein classjava.lang.Object
-
-