/**
* A POJO for dialable numbers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public interface DialableNumber extends Serializable {
/**
* A POJO for dialable cellphone numbers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
@Entity (name = "cellphone_numbers")
@Table (name = "cellphone_numbers")
}
/**
- * Protected constructor
+ * Default constructor
*/
- protected CellphoneNumber () {
+ public CellphoneNumber () {
}
@Override
/**
* A POJO for dialable cellphone numbers with carriers.
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public interface DialableCellphoneNumber extends DialableNumber {
/**
* A POJI for dialable fax numbers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public interface DialableFaxNumber extends DialableNumber {
/**
* A POJO for dialable fax numbers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
@Entity (name = "fax_numbers")
@Table (name = "fax_numbers")
}
/**
- * Protected constructor
+ * Default constructor
*/
- protected FaxNumber () {
+ public FaxNumber () {
}
@Override
/**
* A POJI for dialable land-line numbers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public interface DialableLandLineNumber extends DialableNumber {
/**
* A POJO for dialable phone numbers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
@Entity (name = "phone_numbers")
@Table (name = "phone_numbers")
}
/**
- * Protected constructor
+ * Default constructor
*/
- protected LandLineNumber () {
+ public LandLineNumber () {
}
@Override
/**
* A POJO for cellphone providers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
@Entity (name = "cellphone_provider")
@Table (name = "cellphone_provider")
}
/**
- * Protected constructor for JPA
+ * Default constructor
*/
- protected CellphoneProvider () {
+ public CellphoneProvider () {
}
@Override
/**
* A POJO for SMS provider
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
public interface SmsProvider extends Serializable {
/**
* A validator for phone, fax and mobile numbers
* <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
*/
@FacesValidator (value = "PhoneNumberValidator")
public class PhoneNumberValidator extends BaseLongValidator implements Validator {