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

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

package com.causecode.contact

import com.causecode.geo.location.Country
import groovy.transform.EqualsAndHashCode
import groovy.transform.ToString

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

    Date dateCreated
    Date lastUpdated

    String code
    Country country

    static constraints = {
        code blank: false, unique: true, maxSize: 2
        dateCreated bindable: false
        lastUpdated bindable: false
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy