mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
CE-1887 - Add frontend, middleware, and application name & version properties
This commit is contained in:
@ -31,6 +31,16 @@ import com.kingsrook.qqq.backend.core.model.actions.AbstractActionInput;
|
|||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public class MetaDataInput extends AbstractActionInput
|
public class MetaDataInput extends AbstractActionInput
|
||||||
{
|
{
|
||||||
|
private String frontendName;
|
||||||
|
private String frontendVersion;
|
||||||
|
|
||||||
|
private String middlewareName;
|
||||||
|
private String middlewareVersion;
|
||||||
|
|
||||||
|
private String applicationName;
|
||||||
|
private String applicationVersion;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
**
|
**
|
||||||
@ -39,4 +49,190 @@ public class MetaDataInput extends AbstractActionInput
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for frontendName
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getFrontendName()
|
||||||
|
{
|
||||||
|
return (this.frontendName);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for frontendName
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setFrontendName(String frontendName)
|
||||||
|
{
|
||||||
|
this.frontendName = frontendName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for frontendName
|
||||||
|
*******************************************************************************/
|
||||||
|
public MetaDataInput withFrontendName(String frontendName)
|
||||||
|
{
|
||||||
|
this.frontendName = frontendName;
|
||||||
|
return (this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for frontendVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getFrontendVersion()
|
||||||
|
{
|
||||||
|
return (this.frontendVersion);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for frontendVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setFrontendVersion(String frontendVersion)
|
||||||
|
{
|
||||||
|
this.frontendVersion = frontendVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for frontendVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public MetaDataInput withFrontendVersion(String frontendVersion)
|
||||||
|
{
|
||||||
|
this.frontendVersion = frontendVersion;
|
||||||
|
return (this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for middlewareName
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getMiddlewareName()
|
||||||
|
{
|
||||||
|
return (this.middlewareName);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for middlewareName
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setMiddlewareName(String middlewareName)
|
||||||
|
{
|
||||||
|
this.middlewareName = middlewareName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for middlewareName
|
||||||
|
*******************************************************************************/
|
||||||
|
public MetaDataInput withMiddlewareName(String middlewareName)
|
||||||
|
{
|
||||||
|
this.middlewareName = middlewareName;
|
||||||
|
return (this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for middlewareVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getMiddlewareVersion()
|
||||||
|
{
|
||||||
|
return (this.middlewareVersion);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for middlewareVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setMiddlewareVersion(String middlewareVersion)
|
||||||
|
{
|
||||||
|
this.middlewareVersion = middlewareVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for middlewareVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public MetaDataInput withMiddlewareVersion(String middlewareVersion)
|
||||||
|
{
|
||||||
|
this.middlewareVersion = middlewareVersion;
|
||||||
|
return (this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for applicationName
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getApplicationName()
|
||||||
|
{
|
||||||
|
return (this.applicationName);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for applicationName
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setApplicationName(String applicationName)
|
||||||
|
{
|
||||||
|
this.applicationName = applicationName;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for applicationName
|
||||||
|
*******************************************************************************/
|
||||||
|
public MetaDataInput withApplicationName(String applicationName)
|
||||||
|
{
|
||||||
|
this.applicationName = applicationName;
|
||||||
|
return (this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Getter for applicationVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public String getApplicationVersion()
|
||||||
|
{
|
||||||
|
return (this.applicationVersion);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Setter for applicationVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public void setApplicationVersion(String applicationVersion)
|
||||||
|
{
|
||||||
|
this.applicationVersion = applicationVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
** Fluent setter for applicationVersion
|
||||||
|
*******************************************************************************/
|
||||||
|
public MetaDataInput withApplicationVersion(String applicationVersion)
|
||||||
|
{
|
||||||
|
this.applicationVersion = applicationVersion;
|
||||||
|
return (this);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user