001 /***************************************************************************** 002 * Copyright (C) NanoContainer Organization. All rights reserved. * 003 * ------------------------------------------------------------------------- * 004 * The software in this package is published under the terms of the BSD * 005 * style license a copy of which has been included with this distribution in * 006 * the LICENSE.txt file. * 007 * * 008 * Original code by * 009 *****************************************************************************/ 010 package org.nanocontainer.testmodel; 011 012 public class ThingThatTakesParamsInConstructor { 013 private String value; 014 private Integer intValue; 015 016 public ThingThatTakesParamsInConstructor(String value, Integer intValue) { 017 this.value = value; 018 this.intValue = intValue; 019 } 020 021 public String getValue() { 022 return value + intValue; 023 } 024 }