/*
 * Copyright (C) The Apache Software Foundation. All rights reserved.
 *
 * This software is published under the terms of the Apache Software License
 * version 1.1, a copy of which has been included with this distribution in
 * the LICENSE.txt file.
 */
package org.apache.commons.altrmi.test;



/**
 * Class TestInterface3Impl
 *
 *
 * @author Paul Hammant <a href="mailto:Paul_Hammant@yahoo.com">Paul_Hammant@yahoo.com</a>
 * @version * $Revision: 1.1 $
 */
public class TestInterface3Impl implements TestInterface3 {

    private String mName3;

    /**
     * Constructor TestInterface2Impl
     *
     *
     * @param name
     *
     */
    public TestInterface3Impl(String name) {

        System.out.println("SVR: Object " + this + " created with name: '" + name + "'");

        mName3 = name;
    }

    /**
     * Method setName
     *
     *
     * @param newThingName
     *
     */
    public void setName3(String newThingName) {

        mName3 = newThingName;

        System.out.println("SVR: Object " + this + " name changed to: '" + newThingName + "'");
    }

    /**
     * Method getName
     *
     *
     *
     * @return
     *
     */
    public String getName3() {
        return mName3;
    }
}
