Package com.tcs.hrr.domain

Examples of com.tcs.hrr.domain.candidateCompetency


    ArrayList<ChannelSource> channelSources = (ArrayList<ChannelSource>) this.channelSourceManager
        .findByProperty("channelSourceName", channelSource);
    if (channelSources != null && channelSources.size() != 0)
      this.candidate.setChannelSource(channelSources.get(0));

    candidateCompetency ac = new candidateCompetency();
    ArrayList<Skill> skills = (ArrayList<Skill>) this.skillManager
        .findSkillByProperty("skillName", this.skill);
    if (skills != null && skills.size() != 0) {
      ac.setSkill(skills.get(0));
      ac.setCandidate(this.candidate);
    }

    Set<candidateCompetency> candidateCompetencies = new HashSet<candidateCompetency>();
    candidateCompetencies.add(ac);
View Full Code Here


  }

  public candidateCompetency findById(java.lang.Integer id) {
    log.debug("getting candidateCompetency instance with id: " + id);
    try {
      candidateCompetency instance = (candidateCompetency) getHibernateTemplate()
          .get("com.tcs.hrr.domain.candidateCompetency", id);
      return instance;
    } catch (RuntimeException re) {
      log.error("get failed", re);
      throw re;
View Full Code Here

  }

  public candidateCompetency merge(candidateCompetency detachedInstance) {
    log.debug("merging candidateCompetency instance");
    try {
      candidateCompetency result = (candidateCompetency) getHibernateTemplate()
          .merge(detachedInstance);
      log.debug("merge successful");
      return result;
    } catch (RuntimeException re) {
      log.error("merge failed", re);
View Full Code Here

    ArrayList<ChannelSource> channelSources = (ArrayList<ChannelSource>) this.channelSourceManager
        .findByProperty("channelSourceName", channelSource);
    if (channelSources != null && channelSources.size() != 0)
      this.candidate.setChannelSource(channelSources.get(0));

    candidateCompetency ac = new candidateCompetency();
    ArrayList<Skill> skills = (ArrayList<Skill>) this.skillManager
        .findSkillByProperty("skillName", this.skill);
    if (skills != null && skills.size() != 0) {
      ac.setSkill(skills.get(0));
      ac.setCandidate(this.candidate);
    }

    Set<candidateCompetency> candidateCompetencies = new HashSet<candidateCompetency>();
    candidateCompetencies.add(ac);
View Full Code Here

TOP

Related Classes of com.tcs.hrr.domain.candidateCompetency

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.