org.opencrx.kernel.account1.cci2.Competitor Maven / Gradle / Ivy
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.account1.cci2;
/**
* Class {@code Competitor}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.712510573Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface Competitor
extends org.opencrx.kernel.generic.cci2.CrxObject{
// ----------------------------------------------------------------------------
// Instance/ReferenceGet0_nNoQuery
// ----------------------------------------------------------------------------
/**
* Retrieves the {@code Collection} of objects referenced by {@code account}.
* @return The {@code Collection} of referenced objects.
*/
public java.util.List getAccount(
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code competitorState}.
*
* AS_ACTIVE 0 The account is active.
* AS_INACTIVE 1 The account is inactive.
*
* @return The non-null value for attribute {@code competitorState}.
*/
public short getCompetitorState(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code competitorState}.
*
* AS_ACTIVE 0 The account is active.
* AS_INACTIVE 1 The account is inactive.
*
* @param competitorState The non-{@code null} new value for attribute {@code competitorState}.
*/
public void setCompetitorState(
short competitorState
);
// ----------------------------------------------------------------------------
// Instance/ReferenceGet0_nNoQuery
// ----------------------------------------------------------------------------
/**
* Retrieves the {@code Collection} of objects referenced by {@code contact}.
* @return The {@code Collection} of referenced objects.
*/
public java.util.List getContact(
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code description}.
* @return The possibly null value for attribute {@code description}.
*/
public java.lang.String getDescription(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code description}.
* @param description The possibly null new value for attribute {@code description}.
*/
public void setDescription(
java.lang.String description
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code keyProduct}.
* @return The possibly null value for attribute {@code keyProduct}.
*/
public java.lang.String getKeyProduct(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code keyProduct}.
* @param keyProduct The possibly null new value for attribute {@code keyProduct}.
*/
public void setKeyProduct(
java.lang.String keyProduct
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code name}.
* @return The non-null value for attribute {@code name}.
*/
public java.lang.String getName(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code name}.
* @param name The non-{@code null} new value for attribute {@code name}.
*/
public void setName(
java.lang.String name
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code opportunities}.
* @return The possibly null value for attribute {@code opportunities}.
*/
public java.lang.String getOpportunities(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code opportunities}.
* @param opportunities The possibly null new value for attribute {@code opportunities}.
*/
public void setOpportunities(
java.lang.String opportunities
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code strengths}.
* @return The possibly null value for attribute {@code strengths}.
*/
public java.lang.String getStrengths(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code strengths}.
* @param strengths The possibly null new value for attribute {@code strengths}.
*/
public void setStrengths(
java.lang.String strengths
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code threats}.
* @return The possibly null value for attribute {@code threats}.
*/
public java.lang.String getThreats(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code threats}.
* @param threats The possibly null new value for attribute {@code threats}.
*/
public void setThreats(
java.lang.String threats
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code weaknesses}.
* @return The possibly null value for attribute {@code weaknesses}.
*/
public java.lang.String getWeaknesses(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code weaknesses}.
* @param weaknesses The possibly null new value for attribute {@code weaknesses}.
*/
public void setWeaknesses(
java.lang.String weaknesses
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code winPercentage}.
* @return The possibly null value for attribute {@code winPercentage}.
*/
public java.math.BigDecimal getWinPercentage(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code winPercentage}.
* @param winPercentage The possibly null new value for attribute {@code winPercentage}.
*/
public void setWinPercentage(
java.math.BigDecimal winPercentage
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// Instance/Containment
// ----------------------------------------------------------------------------
/**
* Object Identity
*/
public interface Identity extends org.oasisopen.cci2.Identity {
/**
* Retrieve the {@code Segment}'s identity
* @return the parent object's identity
*/
public org.openmdx.base.cci2.Segment.Identity getSegment();
/**
* Tells whether the {@code id} value is persistent or reassignable.
* @return {@code PERSISTENT} or {@code REASSIGNABLE}
*/
public org.oasisopen.cci2.QualifierType getIdType();
/**
* The {@code id} value
* @return the {@code id} value
*/
public java.lang.String getId();
}
}