Package ru.vsu.amm.domain

Examples of ru.vsu.amm.domain.Record


  public void logMethodCall(String methodName, String sourceFileName, String... args) {
    StringBuilder methodCallDescription = new StringBuilder(methodName);
    for (String string : args) {
      methodCallDescription.append("(" + string + ")");
    }
    mongoTemplate.save(new Record(methodCallDescription.toString(), sourceFileName));
  }
View Full Code Here

TOP

Related Classes of ru.vsu.amm.domain.Record

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.