source: contrib/psync/src/main/java/br/com/prognus/psync/util/TypeAddress.java @ 1545

Revision 1545, 235 bytes checked in by wmerlotto, 15 years ago (diff)

Ticket #693 - Incrementado a sincronizacao de contatos, integracao com maven e codigo de autenticacao no LDAP.

Line 
1package br.com.prognus.psync.util;
2
3/**
4 * phpgw_cc_typeof_ct_addrs
5 *
6 */
7public enum TypeAddress {
8
9        RESIDENCIAL(1),
10        COMERCIAL(2);
11       
12        int id;
13       
14        TypeAddress(int num) {
15                this.id = num;
16        }
17       
18        public int getId() {
19                return id;
20        }
21       
22}
Note: See TracBrowser for help on using the repository browser.