Package org.apache.sis.metadata.iso.citation

Examples of org.apache.sis.metadata.iso.citation.DefaultContact


        citation.getCitedResponsibleParties().add(party);

        // Add a second responsible party with deeper hierarchy.
        party = new DefaultResponsibleParty(Role.POINT_OF_CONTACT);
        party.setIndividualName("Some person of contact");
        final DefaultContact contact = new DefaultContact();
        final DefaultAddress address = new DefaultAddress();
        address.getElectronicMailAddresses().add("Some email");
        contact.setAddress(address);
        party.setContactInfo(contact);
        citation.getCitedResponsibleParties().add(party);
        return citation;
    }
View Full Code Here

TOP

Related Classes of org.apache.sis.metadata.iso.citation.DefaultContact

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.