visualweb.websvcmgr/test/unit/src/org/netbeans/modules/websvc/manager/test/SetupData.java
author Jesse Glick <jglick@netbeans.org>
Wed, 23 Mar 2011 16:50:27 -0400
changeset 3213 c85dcf71e424
permissions -rw-r--r--
Tests at least should compile now.
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  * 
    27  * Contributor(s):
    28  * 
    29  * Portions Copyrighted 2007 Sun Microsystems, Inc.
    30  */
    31 
    32 package org.netbeans.modules.websvc.manager.test;
    33 
    34 import java.io.File;
    35 
    36 /**
    37  *
    38  * @author quynguyen
    39  */
    40 public class SetupData {
    41     private File localWsdlFile = null;
    42     private File localCatalogFile = null;
    43     private File localOriginalWsdl = null;
    44     
    45     private File websvcHome = null;
    46     
    47     public SetupData() {
    48     }
    49 
    50     public File getLocalCatalogFile() {
    51         return localCatalogFile;
    52     }
    53 
    54     public void setLocalCatalogFile(File localCatalogFile) {
    55         this.localCatalogFile = localCatalogFile;
    56     }
    57 
    58     public File getLocalOriginalWsdl() {
    59         return localOriginalWsdl;
    60     }
    61 
    62     public void setLocalOriginalWsdl(File localOriginalWsdl) {
    63         this.localOriginalWsdl = localOriginalWsdl;
    64     }
    65 
    66     public File getLocalWsdlFile() {
    67         return localWsdlFile;
    68     }
    69 
    70     public void setLocalWsdlFile(File localWsdlFile) {
    71         this.localWsdlFile = localWsdlFile;
    72     }
    73 
    74     public File getWebsvcHome() {
    75         return websvcHome;
    76     }
    77 
    78     public void setWebsvcHome(File websvcHome) {
    79         this.websvcHome = websvcHome;
    80     }
    81     
    82     
    83 }