/**
* Setter for country code (example: 49 for Germany, 63 for Philippines)
* <p>
- * @param phoneCountryCode Country code
+ * @param countryPhoneCode Country code
*/
- void setCountryPhoneCode (final Short phoneCountryCode);
+ void setCountryPhoneCode (final Short countryPhoneCode);
/**
* Getter for id number
* <p>
* @return Local dial prefix
*/
- String getCountryLocalDialPrefix ();
+ String getCountryExternalDialPrefix ();
/**
* Setter for local dial prefix
* <p>
- * @param countryLocalDialPrefix Local dial prefix
+ * @param countryExternalDialPrefix Local dial prefix
*/
- void setCountryLocalDialPrefix (final String countryLocalDialPrefix);
+ void setCountryExternalDialPrefix (final String countryExternalDialPrefix);
/**
* Getter for abroad dial prefix
/**
* Setter for i18n key for country name
* <p>
- * @param countryI18nkey i18n key for country name
+ * @param countryI18nKey i18n key for country name
*/
- void setCountryI18nkey (final String countryI18nkey);
+ void setCountryI18nkey (final String countryI18nKey);
/**
* Getter for whether the local dial prefix is required for local calls
/**
* Setter for whether the local dial prefix is required for local calls
* <p>
- * @param countryIsLocalPrefixRequired Whether the local dial prefix is
- * required
+ * @param countryIsLocalPrefixRequired Whether the local dial prefix is required
*/
void setCountryIsLocalPrefixRequired (final Boolean countryIsLocalPrefixRequired);
@Override
int hashCode ();
+
}
private Boolean countryIsLocalPrefixRequired;
/**
- * Dial prefix to be dialed before the area/city number is dialed locally.
+ * Dial prefix to be dialed before the area/city number is dialed.
* In Germany, this is 0.
*/
@Basic (optional = false)
- @Column (name = "country_local_dial_prefix", length = 10)
- private String countryLocalDialPrefix;
+ @Column (name = "country_exyernal_dial_prefix", length = 10)
+ private String countryExternalDialPrefix;
/**
* 2-digit country's phone code (example: 49 for Germany, 63 for
}
@Override
- public String getCountryLocalDialPrefix () {
- return this.countryLocalDialPrefix;
+ public String getCountryExternalDialPrefix () {
+ return this.countryExternalDialPrefix;
}
@Override
- public void setCountryLocalDialPrefix (final String countryLocalDialPrefix) {
- this.countryLocalDialPrefix = countryLocalDialPrefix;
+ public void setCountryExternalDialPrefix (final String countryExternalDialPrefix) {
+ this.countryExternalDialPrefix = countryExternalDialPrefix;
}
@Override