All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.db.sdo.SchemaFileMapping Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.sun.xml.ws.db.sdo;

/* $Header: webservices/src/orajaxrpc/oracle/j2ee/ws/common/wsdl/SchemaFileMapping.java /main/1 2010/04/14 10:30:39 bnaugle Exp $ */

/* Copyright (c) 2006, 2010, Oracle and/or its affiliates. 
All rights reserved. */
/*
   DESCRIPTION
    

   PRIVATE CLASSES
    

   NOTES
    

   MODIFIED    (MM/DD/YY)
    bnaugle    Mar 29, 2010 - Creation
 */


public class SchemaFileMapping {
    private String advertisedName;
    private String path;

    public SchemaFileMapping(String advertisedName, String path) {
        this.advertisedName = advertisedName;
        this.path = path;
    }

    public String getAdvertisedName() {
        return advertisedName;
    }

    public String getPath() {
        return path;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy