Package org.blueoxygen.pedimedi

Examples of org.blueoxygen.pedimedi.Subject


public class ActiveSubject extends SubjectForm {

  @Override
  public String execute() throws Exception {
    LogInformation log = null;
    Subject subject = getSubject();
    setSubject((Subject) manager.getById(Subject.class, getSubject()
        .getId()));
    log = getSubject().getLogInformation();

    try {
View Full Code Here


      log.setCreateBy(sessionCredentials.getCurrentUser().getId());
      log.setCreateDate(new Timestamp(System.currentTimeMillis()));
      getSubject().setId(null);

    } else {
      Subject category = getSubject();
      setSubject((Subject) manager.getById(Subject.class, getSubject()
          .getId()));
      log = getSubject().getLogInformation();
      try {
        PropertyUtils.copyProperties(getSubject(), category);
View Full Code Here

TOP

Related Classes of org.blueoxygen.pedimedi.Subject

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.