mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
Fix some process frontend serialization issues
This commit is contained in:
@ -23,6 +23,7 @@ package com.kingsrook.qqq.backend.core.model.actions;
|
|||||||
|
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
import com.kingsrook.qqq.backend.core.actions.async.AsyncJobCallback;
|
import com.kingsrook.qqq.backend.core.actions.async.AsyncJobCallback;
|
||||||
import com.kingsrook.qqq.backend.core.actions.async.AsyncJobStatus;
|
import com.kingsrook.qqq.backend.core.actions.async.AsyncJobStatus;
|
||||||
import com.kingsrook.qqq.backend.core.context.QContext;
|
import com.kingsrook.qqq.backend.core.context.QContext;
|
||||||
@ -84,6 +85,7 @@ public class AbstractActionInput
|
|||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
@JsonIgnore
|
||||||
public QAuthenticationMetaData getAuthenticationMetaData()
|
public QAuthenticationMetaData getAuthenticationMetaData()
|
||||||
{
|
{
|
||||||
return (getInstance().getAuthentication());
|
return (getInstance().getAuthentication());
|
||||||
@ -95,6 +97,7 @@ public class AbstractActionInput
|
|||||||
** Getter for instance
|
** Getter for instance
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
@JsonIgnore
|
||||||
public QInstance getInstance()
|
public QInstance getInstance()
|
||||||
{
|
{
|
||||||
return (QContext.getQInstance());
|
return (QContext.getQInstance());
|
||||||
@ -106,6 +109,7 @@ public class AbstractActionInput
|
|||||||
** Getter for session
|
** Getter for session
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
@JsonIgnore
|
||||||
public QSession getSession()
|
public QSession getSession()
|
||||||
{
|
{
|
||||||
return (QContext.getQSession());
|
return (QContext.getQSession());
|
||||||
@ -117,6 +121,7 @@ public class AbstractActionInput
|
|||||||
** Getter for asyncJobCallback
|
** Getter for asyncJobCallback
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
@JsonIgnore
|
||||||
public AsyncJobCallback getAsyncJobCallback()
|
public AsyncJobCallback getAsyncJobCallback()
|
||||||
{
|
{
|
||||||
if(asyncJobCallback == null)
|
if(asyncJobCallback == null)
|
||||||
|
@ -22,13 +22,14 @@
|
|||||||
package com.kingsrook.qqq.backend.core.model.metadata.dashboard.nocode;
|
package com.kingsrook.qqq.backend.core.model.metadata.dashboard.nocode;
|
||||||
|
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public class HtmlWrapper
|
public class HtmlWrapper implements Serializable
|
||||||
{
|
{
|
||||||
private String prefix;
|
private String prefix;
|
||||||
private String suffix;
|
private String suffix;
|
||||||
|
Reference in New Issue
Block a user