org.opencrx.kernel.base.cci2.SendAlertParams Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// StructureType/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.base.cci2;
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.StructureMapper",
date = "2023-10-28T12:15:35.804582680Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface SendAlertParams
{
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code description}.
* @return The possibly null value for structure field {@code description}.
*/
public java.lang.String getDescription(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code importance}.
* @return The non-null value for structure field {@code importance}.
*/
public short getImportance(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code name}.
* @return The non-null value for structure field {@code name}.
*/
public java.lang.String getName(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code reference}.
* @return The possibly null value for structure field {@code reference}.
*/
public org.openmdx.base.cci2.BasicObject getReference(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the optional structure field {@code resendDelayInSeconds}.
* @return The possibly null value for structure field {@code resendDelayInSeconds}.
*/
public java.lang.Integer getResendDelayInSeconds(
);
// ----------------------------------------------------------------------------
// StructureType/FieldGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the structure field {@code toUsers}.
* @return The non-null value for structure field {@code toUsers}.
*/
public java.lang.String getToUsers(
);
// ----------------------------------------------------------------------------
// StructureType/Member
// ----------------------------------------------------------------------------
/**
* The structure's members
*/
enum Member {
description
, importance
, name
, reference
, resendDelayInSeconds
, toUsers
}
// ----------------------------------------------------------------------------
// StructureType/End
// ----------------------------------------------------------------------------
}