@Column (name = "country_entry_created", nullable = false, updatable = false)
private Calendar countryEntryCreated;
+ /**
+ * Dial prefix to be dialed before the area/city number is dialed. In
+ * Germany, this is 0.
+ */
+ @Basic (optional = false)
+ @Column (name = "country_exyernal_dial_prefix", length = 10)
+ private String countryExternalDialPrefix;
+
/**
* Key to i18n key (to have translated country names)
*/
@Column (name = "country_is_local_prefix_required", nullable = false)
private Boolean countryIsLocalPrefixRequired;
- /**
- * Dial prefix to be dialed before the area/city number is dialed.
- * In Germany, this is 0.
- */
- @Basic (optional = false)
- @Column (name = "country_exyernal_dial_prefix", length = 10)
- private String countryExternalDialPrefix;
-
/**
* 2-digit country's phone code (example: 49 for Germany, 63 for
* Philippines)
this.countryEntryCreated = countryEntryCreated;
}
+ @Override
+ public String getCountryExternalDialPrefix () {
+ return this.countryExternalDialPrefix;
+ }
+
+ @Override
+ public void setCountryExternalDialPrefix (final String countryExternalDialPrefix) {
+ this.countryExternalDialPrefix = countryExternalDialPrefix;
+ }
+
@Override
public String getCountryI18nkey () {
return this.countryI18nkey;
this.countryIsLocalPrefixRequired = countryIsLocalPrefixRequired;
}
- @Override
- public String getCountryExternalDialPrefix () {
- return this.countryExternalDialPrefix;
- }
-
- @Override
- public void setCountryExternalDialPrefix (final String countryExternalDialPrefix) {
- this.countryExternalDialPrefix = countryExternalDialPrefix;
- }
-
@Override
public Short getCountryPhoneCode () {
return this.countryPhoneCode;