org.opencrx.kernel.address1.cci2.PhoneNumberAddressable Maven / Gradle / Ivy
The newest version!
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
package org.opencrx.kernel.address1.cci2;
/**
* Abstract class {@code PhoneNumberAddressable}
*/
@javax.annotation.Generated(
value = "org.openmdx.application.mof.mapping.java.InstanceMapper",
date = "2023-10-28T12:15:35.097070035Z",
comments = "Generated by openMDX 2.18.8 - DO NOT CHANGE MANUALLY"
)
public interface PhoneNumberAddressable
{
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code automaticParsing}.
* @return The non-null value for attribute {@code automaticParsing}.
*/
public boolean isAutomaticParsing(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code automaticParsing}.
* @param automaticParsing The non-{@code null} new value for attribute {@code automaticParsing}.
*/
public void setAutomaticParsing(
boolean automaticParsing
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code phoneCityArea}.
* @return The possibly null value for attribute {@code phoneCityArea}.
*/
public java.lang.String getPhoneCityArea(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code phoneCityArea}.
* @param phoneCityArea The possibly null new value for attribute {@code phoneCityArea}.
*/
public void setPhoneCityArea(
java.lang.String phoneCityArea
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet1_1
// ----------------------------------------------------------------------------
/**
* Retrieves the value for the attribute {@code phoneCountryPrefix}.
* @return The non-null value for attribute {@code phoneCountryPrefix}.
*/
public short getPhoneCountryPrefix(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet1_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code phoneCountryPrefix}.
* @param phoneCountryPrefix The non-{@code null} new value for attribute {@code phoneCountryPrefix}.
*/
public void setPhoneCountryPrefix(
short phoneCountryPrefix
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code phoneExtension}.
* @return The possibly null value for attribute {@code phoneExtension}.
*/
public java.lang.String getPhoneExtension(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code phoneExtension}.
* @param phoneExtension The possibly null new value for attribute {@code phoneExtension}.
*/
public void setPhoneExtension(
java.lang.String phoneExtension
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code phoneLocalNumber}.
* @return The possibly null value for attribute {@code phoneLocalNumber}.
*/
public java.lang.String getPhoneLocalNumber(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code phoneLocalNumber}.
* @param phoneLocalNumber The possibly null new value for attribute {@code phoneLocalNumber}.
*/
public void setPhoneLocalNumber(
java.lang.String phoneLocalNumber
);
// ----------------------------------------------------------------------------
// Instance/AttributeGet0_1
// ----------------------------------------------------------------------------
/**
* Retrieves the possibly null value for the optional attribute {@code phoneNumberFull}.
* @return The possibly null value for attribute {@code phoneNumberFull}.
*/
public java.lang.String getPhoneNumberFull(
);
// ----------------------------------------------------------------------------
// Instance/AttributeSet0_1
// ----------------------------------------------------------------------------
/**
* Sets a new value for the attribute {@code phoneNumberFull}.
* @param phoneNumberFull The possibly null new value for attribute {@code phoneNumberFull}.
*/
public void setPhoneNumberFull(
java.lang.String phoneNumberFull
);
// ----------------------------------------------------------------------------
// Instance/End
// ----------------------------------------------------------------------------
}