public interface UtilityManager extends Manager<RegistryBean>
Modifier and Type | Method and Description |
---|---|
javax.xml.registry.infomodel.EmailAddress |
createEmailAddress(java.lang.String address)
Create a
EmailAddress instance using the specified parameters. |
javax.xml.registry.infomodel.EmailAddress |
createEmailAddress(java.lang.String address,
java.lang.String type)
Create a
EmailAddress instance using the specified parameters. |
javax.xml.registry.infomodel.PersonName |
createPersonName(java.lang.String fullName)
Create a
PersonName instance using the specified full name. |
javax.xml.registry.infomodel.PersonName |
createPersonName(java.lang.String firstName,
java.lang.String middleName,
java.lang.String lastName)
Create a
PersonName instance using the specified arguments. |
javax.xml.registry.infomodel.PostalAddress |
createPostalAddress(java.lang.String streetNumber,
java.lang.String street,
java.lang.String city,
java.lang.String stateOrProvince,
java.lang.String country,
java.lang.String postalCode,
java.lang.String type)
Create a
PostalAddress instance using the specified parameters. |
javax.xml.registry.infomodel.TelephoneNumber |
createTelephoneNumber()
Create a
TelephoneNumber instance using the specified parameters. |
javax.xml.registry.infomodel.PersonName createPersonName(java.lang.String fullName)
PersonName
instance using the specified full name.fullName
- The full name of the personPersonName
instance created with the provided detailsjavax.xml.registry.infomodel.PersonName createPersonName(java.lang.String firstName, java.lang.String middleName, java.lang.String lastName)
PersonName
instance using the specified arguments.firstName
- The person's first namemiddleName
- The middle name of the personlastName
- The person's last namePersonName
instance created with the provided detailsjavax.xml.registry.infomodel.PostalAddress createPostalAddress(java.lang.String streetNumber, java.lang.String street, java.lang.String city, java.lang.String stateOrProvince, java.lang.String country, java.lang.String postalCode, java.lang.String type)
PostalAddress
instance using the specified parameters.streetNumber
- The street numberstreet
- The name of the streetcity
- The city namestateOrProvince
- The state to which the city belongscountry
- The residing countrypostalCode
- The postal code for the citytype
- The type of address - Home, Office, etc.,PostalAddress
instance created from the given detailsjavax.xml.registry.infomodel.TelephoneNumber createTelephoneNumber()
TelephoneNumber
instance using the specified parameters.TelephoneNumber
instance.javax.xml.registry.infomodel.EmailAddress createEmailAddress(java.lang.String address)
EmailAddress
instance using the specified parameters.address
- The email addressEmailAddress
instancejavax.xml.registry.infomodel.EmailAddress createEmailAddress(java.lang.String address, java.lang.String type)
EmailAddress
instance using the specified parameters.address
- The email addresstype
- The type of the addressEmailAddress
instance