WidgetDashboardAbstract Data Type

Author: Kurt Stauffer Date: 3/23/16 Time: 2:41 PM

Abstract Type
Subtypes
WidgetDashboard
Properties
name data type constraints description
widget Widget  
dashboard Dashboard  
defaultPosition number required int
defaultSize number required int
Properties inherited from BaseHibernateEntity
id number   The unique internal ID of the object.
version number   For internal use only. This is the serialization recorder for optimistic locking of several objects between sessions.
Properties inherited from BaseEntity
violations array of SimpleViolation   A list of constraint violations, if any, that this object has.

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "widget" : {
    "weight" : 12345,
    "description" : "...",
    "name" : "...",
    "code" : "...",
    "permission" : "...",
    "type" : "...",
    "viewPath" : "...",
    "small" : true,
    "medium" : true,
    "large" : true,
    "id" : 12345,
    "version" : 12345,
    "violations" : [ {
      "propertyName" : "...",
      "failureMessage" : "...",
      "stackTrace" : "..."
    }, {
      "propertyName" : "...",
      "failureMessage" : "...",
      "stackTrace" : "..."
    } ]
  },
  "dashboard" : {
    "name" : "...",
    "id" : 12345,
    "version" : 12345,
    "violations" : [ {
      "propertyName" : "...",
      "failureMessage" : "...",
      "stackTrace" : "..."
    }, {
      "propertyName" : "...",
      "failureMessage" : "...",
      "stackTrace" : "..."
    } ]
  },
  "defaultPosition" : 12345,
  "defaultSize" : 12345,
  "id" : 12345,
  "version" : 12345,
  "violations" : [ {
    "propertyName" : "...",
    "failureMessage" : "...",
    "stackTrace" : "..."
  }, {
    "propertyName" : "...",
    "failureMessage" : "...",
    "stackTrace" : "..."
  } ]
}