|
NAMENet::DRI::Data::Contact - Handle contact data, modeled from EPP for Net::DRIDESCRIPTIONThis base class encapsulates all data for a contact as defined in EPP (RFC4933). It can (and should) be subclassed for TLDs needing to store other data for a contact. All subclasses must have a validate() method that takes care of verifying contact data, and an id() method returning an opaque value, unique per contact (in a given registry).The following methods are both accessors and mutators : as mutators, they can be called in chain, as they all return the object itself. Postal information through name() org() street() city() sp() pc() cc() can be provided twice. EPP allows a localized form (content is in unrestricted UTF-8) and internationalized form (content MUST be represented in a subset of UTF-8 that can be represented in the 7-bit US-ASCII character set). Not all registries support both forms. When setting values, you pass one element if both forms are equal or two elements as a list (first the localized form, then the internationalized one). When getting values, in list context you get back both values, in scalar context you get back the first one, that is the localized form. You can also use methods int2loc() and loc2int() to create one version from the other. METHODSloid()local object ID for this contact, never sent to registry (can be used to track the local db id of this object)srid()server ID, ID of the object as known by the registry in which it was createdid()an alias (needed for Net::DRI::Data::ContactSet) of the previous methodroid()registry/remote object id (internal to a registry)name()name of the contactorg()organization of the contactstreet()street address of the contact (ref array of up to 3 elements)city()city of the contactsp()state/province of the contactpc()postal code of the contactcc()alpha2 country code of the contact (will be verified against list of valid country codes)email()email address of the contactvoice()voice number of the contact (in the form +CC.NNNNNNNNxEEE)fax()fax number of the contact (same form as above)auth()authentification for this contact (hash ref with a key 'pw' and a value being the password)disclose()privacy settings related to this contact (see RFC)int2loc()create the localized part from the internationalized part ; existing internationalized data is overwrittenloc2int()create the internationalized part from the localized part ; existing localized data is overwritten ; as the internationalized part must be a subset of UTF-8 when the localized one can be the full UTF-8, this operation may creates undefined characters (?) as resultas_string()return a string formed with all data contained in this contact object ; this is mostly useful for debugging and logging, this string should not be parsed as its format is not guaranteed to remain stable, you should use the above accessorsattributes()return an array of attributes name available in this contact object (taking into account any subclass specific attribute)SUPPORTFor now, support questions should be sent to:<netdri@dotandco.com> Please also see the SUPPORT file in the distribution. SEE ALSOhttp://www.dotandco.com/services/software/Net-DRI/AUTHORPatrick Mevzek, <netdri@dotandco.com>COPYRIGHTCopyright (c) 2005-2010 Patrick Mevzek <netdri@dotandco.com>. All rights reserved.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the LICENSE file that comes with this distribution for more details.
Visit the GSP FreeBSD Man Page Interface. |