Package edu.uga.galileo.voci.bo

Examples of edu.uga.galileo.voci.bo.AuditLog


    try {
      // roleId/type/date
      // getRecord(int projectId, ContentType contentType, int contentId,
      // Timestamp update)
      projectId = new ProjectManager().getProjectID(command.getProject());
      AuditLog record = alm.getRecord(projectId, ContentType
          .valueOf(Integer.parseInt(vals[1])), Integer
          .parseInt(vals[0]), Timestamp.valueOf(vals[2].replace(
          "%20", " ")));
      data = record.getDataExport();

      Logger.debug("\n\n the data looks like : " + data + "\n\n");

      role = new Role();
      role.fromString(data);
View Full Code Here

TOP

Related Classes of edu.uga.galileo.voci.bo.AuditLog

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.