Examples of ContactInfo


Examples of com.arcbees.gquery.tooltip.client.contactcell.ContactDatabase.ContactInfo

        //provide dynamic content
        options.withContent(new TooltipContentProvider() {
            @Override
            public String getContent(Element element) {
                Integer id = Integer.parseInt(element.getAttribute("data-contact-id"));
                ContactInfo contact = ContactDatabase.get().queryContactById(id);

                return ContactTemplates.INSTANCE.contactCellTooltip(contactImage, contact.getFullName(),
                        contact.getAddress()).asString();
            }
        });

        options.withResources(ContactTooltipResources.INSTANCE);
        options.withPlacement(TooltipPlacement.RIGHT);
View Full Code Here

Examples of com.liusoft.dlog4j.base.ContactInfo

    //ubean.setLastAddr(request.getRemoteAddr());
    ubean.setPassword(getPassword())
    if (StringUtils.isNotEmpty(getResume()))
      ubean.setResume(super.autoFiltrate(getResume()));

    ContactInfo ci = new ContactInfo();
    if (StringUtils.isNotEmpty(getEmail()) && StringUtils.isEmail(getEmail()))
      ci.setEmail(getEmail());
    if (StringUtils.isNotEmpty(getHomePage()))
      ci.setHomePage(getHomePage());
    if (StringUtils.isNotEmpty(getMobile()))
      ci.setMobile(getMobile());
    if (StringUtils.isNotEmpty(getMsn()))
      ci.setMsn(getMsn());
    if (StringUtils.isNotEmpty(getQq()))
      ci.setQq(getQq());
    if (StringUtils.isNotEmpty(getProvince()))
      ci.setProvince(getProvince());
    if (StringUtils.isNotEmpty(getCity()))
      ci.setCity(getCity());
    //ci.setMobile(RequestUtils.getRequestMobile(request));
    ubean.setContactInfo(ci);

    ubean.setSex(getSex());
View Full Code Here

Examples of com.m4f.business.domain.ContactInfo

    @Override
    public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {
      if(SCHOOL.equals(qName)) {
        this.school = new School();
        this.info = new ContactInfo();
        this.school.setProvider(provider.getId());
      }
      this.sb.delete(0, this.sb.length());
    }
View Full Code Here

Examples of com.sun.corba.se.pept.transport.ContactInfo

            // NOTE: IMPORTANT:
            // Only do local.  The APP Server interceptors check
            // effectiveTarget.isLocal - which is determined via
            // the IOR - so if we added other addresses then
            // transactions and interceptors would not execute.
            ContactInfo contactInfo = new SharedCDRContactInfoImpl(
                orb, this, effectiveTargetIOR,
                orb.getORBData().getGIOPAddressDisposition());
            effectiveTargetIORContactInfoList.add(contactInfo);
        } else {
            addRemoteContactInfos(effectiveTargetIOR,
View Full Code Here

Examples of com.sun.corba.se.pept.transport.ContactInfo

    protected void addRemoteContactInfos(
        IOR  effectiveTargetIOR,
        List effectiveTargetIORContactInfoList)
    {
        ContactInfo contactInfo;
        List socketInfos = orb.getORBData()
            .getIORToSocketInfo().getSocketInfo(effectiveTargetIOR);
        Iterator iterator = socketInfos.iterator();
        while (iterator.hasNext()) {
            SocketInfo socketInfo = (SocketInfo) iterator.next();
View Full Code Here

Examples of com.sun.corba.se.pept.transport.ContactInfo

    public MessageMediator createMessageMediator(Broker broker,
                                                 Connection connection)
    {
        // REVISIT - no factoring so cheat to avoid code dup right now.
        // REVISIT **** COUPLING !!!!
        ContactInfo contactInfo = new SocketOrChannelContactInfoImpl();
        return contactInfo.createMessageMediator(broker, connection);
    }
View Full Code Here

Examples of com.sun.corba.se.pept.transport.ContactInfo

                                                         Connection connection,
                                                         MessageMediator messageMediator)
    {
        // REVISIT - no factoring so cheat to avoid code dup right now.
        // REVISIT **** COUPLING !!!!
        ContactInfo contactInfo = new SocketOrChannelContactInfoImpl();
        return contactInfo.finishCreatingMessageMediator(broker,
                                          connection, messageMediator);
    }
View Full Code Here

Examples of com.sun.corba.se.pept.transport.ContactInfo

    public MessageMediator createMessageMediator(Broker broker,
                                                 Connection connection)
    {
        // REVISIT - no factoring so cheat to avoid code dup right now.
        // REVISIT **** COUPLING !!!!
        ContactInfo contactInfo = new SocketOrChannelContactInfoImpl();
        return contactInfo.createMessageMediator(broker, connection);
    }
View Full Code Here

Examples of com.sun.corba.se.pept.transport.ContactInfo

                                                         Connection connection,
                                                         MessageMediator messageMediator)
    {
        // REVISIT - no factoring so cheat to avoid code dup right now.
        // REVISIT **** COUPLING !!!!
        ContactInfo contactInfo = new SocketOrChannelContactInfoImpl();
        return contactInfo.finishCreatingMessageMediator(broker,
                                          connection, messageMediator);
    }
View Full Code Here

Examples of com.sun.corba.se.pept.transport.ContactInfo

            // NOTE: IMPORTANT:
            // Only do local.  The APP Server interceptors check
            // effectiveTarget.isLocal - which is determined via
            // the IOR - so if we added other addresses then
            // transactions and interceptors would not execute.
            ContactInfo contactInfo = new SharedCDRContactInfoImpl(
                orb, this, effectiveTargetIOR,
                orb.getORBData().getGIOPAddressDisposition());
            effectiveTargetIORContactInfoList.add(contactInfo);
        } else {
            addRemoteContactInfos(effectiveTargetIOR,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.