com.sun.xml.ws.db.sdo.SchemaFileMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdo-eclipselink-plugin Show documentation
Show all versions of sdo-eclipselink-plugin Show documentation
Pluggable databinding module employing Eclipselink SDO
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