Class Phone
java.lang.Object
com.broadleafcommerce.paypal.micro.gateway.domain.orders.Phone
- All Implemented Interfaces:
Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe country calling code (CC), in its canonical international E.164 numbering plan format.The extension number.The national number, in its canonical international E.164 numbering plan format.void
setCountryCode
(String countryCode) The country calling code (CC), in its canonical international E.164 numbering plan format.void
setExtensionNumber
(String extensionNumber) The extension number.void
setNationalNumber
(String nationalNumber) The national number, in its canonical international E.164 numbering plan format.
-
Constructor Details
-
Phone
public Phone()
-
-
Method Details
-
setCountryCode
The country calling code (CC), in its canonical international E.164 numbering plan format. The combined length of the CC and the national number must not be greater than 15 digits. The national number consists of a national destination code (NDC) and subscriber number (SN). -
setNationalNumber
The national number, in its canonical international E.164 numbering plan format. The combined length of the country calling code (CC) and the national number must not be greater than 15 digits. The national number consists of a national destination code (NDC) and subscriber number (SN). -
setExtensionNumber
The extension number. -
getCountryCode
The country calling code (CC), in its canonical international E.164 numbering plan format. The combined length of the CC and the national number must not be greater than 15 digits. The national number consists of a national destination code (NDC) and subscriber number (SN). -
getNationalNumber
The national number, in its canonical international E.164 numbering plan format. The combined length of the country calling code (CC) and the national number must not be greater than 15 digits. The national number consists of a national destination code (NDC) and subscriber number (SN). -
getExtensionNumber
The extension number.
-