ReferenceObjectCopierImpl.java revision 608:7e06bf1dcb09
117683Spst/*
2214518Srpaulo * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3127664Sbms * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4251129Sdelphij *
5127664Sbms * This code is free software; you can redistribute it and/or modify it
6172677Smlaier * under the terms of the GNU General Public License version 2 only, as
7251129Sdelphij * published by the Free Software Foundation.  Oracle designates this
8127664Sbms * particular file as subject to the "Classpath" exception as provided
9127664Sbms * by Oracle in the LICENSE file that accompanied this code.
10251129Sdelphij *
11251129Sdelphij * This code is distributed in the hope that it will be useful, but WITHOUT
12251129Sdelphij * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1317683Spst * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14172677Smlaier * version 2 for more details (a copy is included in the LICENSE file that
15172677Smlaier * accompanied this code).
16251129Sdelphij *
17127664Sbms * You should have received a copy of the GNU General Public License version
18127664Sbms * 2 along with this work; if not, write to the Free Software Foundation,
19251129Sdelphij * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20127664Sbms *
21127664Sbms * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22172677Smlaier * or visit www.oracle.com if you need additional information or have any
23172677Smlaier * questions.
24251129Sdelphij */
25251129Sdelphij
26172677Smlaierpackage com.sun.corba.se.impl.copyobject ;
27251129Sdelphij
28127664Sbmsimport com.sun.corba.se.spi.copyobject.ObjectCopier ;
2975107Sfenner
30172677Smlaierpublic class ReferenceObjectCopierImpl implements ObjectCopier
31251129Sdelphij{
32251129Sdelphij    public Object copy( Object obj )
33251129Sdelphij    {
34251129Sdelphij        return obj ;
35251129Sdelphij    }
36251129Sdelphij}
37251129Sdelphij