All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.causecode.contact.Phone.groovy Maven / Gradle / Ivy

package com.causecode.contact

import groovy.transform.EqualsAndHashCode
import groovy.transform.ToString

/**
 * Used to store phone number and phone country code information.
 *
 */
@ToString(includes = ['id'], includePackage = false)
@EqualsAndHashCode
class Phone {

    String number

    PhoneCountryCode countryCode

    Date dateCreated
    Date lastUpdated

    static constraints = {
        number size: 10..10
        dateCreated bindable: false
        lastUpdated bindable: false
    }

    def getFullPhoneNumber() {
        return '+(' + countryCode.code + ')' + number
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy