org.opencrx.kernel.reservation1.cci2.ContactRoleQuery Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Query/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.reservation1.cci2;
/**
* A {@code ContactRoleQuery} selects a set of instances of class {@code ContactRole} based on conditions to be met by their attributes.
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.QueryMapper",
date = "2023-10-28T12:15:36.728744378Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface ContactRoleQuery
extends org.opencrx.kernel.generic.cci2.CrxObjectQuery
{
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint to the predicate for {@code ContactRole} testing whether the value of the feature {@code account} is {@code null} or not.
*/
public org.w3c.cci2.OptionalFeaturePredicate account(
);
/**
* Adds a condition for the feature {@code account} to the predicate for {@code ContactRole}, which evaluates to {@code false} unless the value of the feature {@code account} satisfies the given condition.
* Since the attribute is optional its value may be {@code null}, in which case the condition is not satisfied
*/
public org.opencrx.kernel.account1.cci2.AccountQuery thereExistsAccount(
);
/**
* Adds a condition for the feature {@code account} to the predicate for {@code ContactRole}, which evaluates to {@code false} unless the value of the feature {@code account} satisfies the given condition.
*
Since the attribute is optional its value may be {@code null}, in which case the condition is satisfied
*/
public org.opencrx.kernel.account1.cci2.AccountQuery forAllAccount(
);
// ----------------------------------------------------------------------------
// Query/Feature
// ----------------------------------------------------------------------------
/**
* Adds a constraint for the feature {@code contactRole} to the predicate. The predicate for {@code ContactRole} evaluates {@code true} if its value of feature {@code contactRole} satisfies the selected condition.
*/
public org.w3c.cci2.ComparableTypePredicate contactRole(
);
/**
* Allows to adds a sort instruction for {@code ContactRole} depending the feature {@code contactRole}
* Note: The order in which {@code orderBy…} instructions are given is relevant!
*/
public org.w3c.cci2.SimpleTypeOrder orderByContactRole(
);
// ----------------------------------------------------------------------------
// Query/End
// ----------------------------------------------------------------------------
}