public Contact getContact()

in cxf-soap/src/main/java/org/acme/cxf/soap/pojo/service/impl/ContactServiceInMemoryImpl.java [41:47]


    public Contact getContact(String name) throws NoSuchContactException {
        if (!contacts.containsKey(name)) {
            throw new NoSuchContactException(name);
        }

        return contacts.get(name);
    }