/v3.2/nimbits-model/src/com/nimbits/client/model/usercontext/UserContextImpl.java

http://nimbits-server.googlecode.com/ · Java · 54 lines · 21 code · 15 blank · 18 comment · 0 complexity · 9e19ab421786f4a48031b4c594b10829 MD5 · raw file

  1. /*
  2. * Copyright (c) 2010 Tonic Solutions LLC.
  3. *
  4. * http://www.nimbits.com
  5. *
  6. *
  7. * Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * http://www.gnu.org/licenses/gpl.html
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
  12. */
  13. package com.nimbits.client.model.usercontext;
  14. import java.io.Serializable;
  15. import java.util.ArrayList;
  16. import java.util.List;
  17. /**
  18. * Created by bsautner
  19. * User: benjamin
  20. * Date: 9/29/11
  21. * Time: 12:11 PM
  22. */
  23. public class UserContextImpl implements Serializable, UserContext {
  24. private static final long serialVersionUID = 1L;
  25. private List<String> trace;
  26. public UserContextImpl() {
  27. }
  28. public List<String> getTrace() {
  29. return trace;
  30. }
  31. public UserContextImpl(final String className) {
  32. trace = new ArrayList<String>();
  33. trace.add(className);
  34. }
  35. @Override
  36. public void addTrace(final String traceText) {
  37. trace.add(traceText);
  38. }
  39. }