Package com.mendix.systemwideinterfaces.core
package com.mendix.systemwideinterfaces.core
-
ClassDescriptionThis exception is thrown when authentication fails.This exception is thrown when data validation of an object member fails (on change, setValue or commit).Defines the context interface.Defines the available types of request execution.ICoreAction<T>An action that can be executed within an
IContext
.Generic class for Mendix data types.Provides all enum types.A generic interface implemented by all entity proxy classes, defining some default methods and some common methods among all entity proxies.Represents feedback instructions, which will be sent to the client using the JSON API.Defines how to open a form for feedback.Defines the message type for feedback messages.Depending on the target, the handling of the instruction will be passed to core of the client system or to some specific widget.Defines the type of this feedback message.Represents a user language.Represents a Mendix identifier, holding information for uniquely identifiying a Mendix object instance.Represents an entity (IMetaObject) instance.Defines the possible object states.Represents a Mendix object member (attribute or association).Defines the object member states.Defines the object member's value states.Interface which can be implemented to roll your own profiler for client requests.Provides the Session interface.Represents a Mendix user, corresponding to a System.User object.UserAction<R>Abstract class for user actions.
Usage:
- extend this class (define R!)
- implement the method executeAction()
Example:
public class ExampleAction extends UserAction {
private String param;
public ExampleAction(String param) {
super();
this.param = param;
}
public String executeAction() throws Exception {
return "Hello world! ("+this.param+")";
}
public String toString() {
return "ExampleAction:: param="+this.param;
}
}UserActionListener<T extends UserAction<?>>Abstract ActionListener.
T is the type of UserAction this listener listens to.This exception is thrown when access is denied to a user because the user is blocked.Represents an exception for reporting messages to user.Defines the available exception categories.