Minor changes to fix typos

master
Carson McDonald 12 years ago committed by Phillip Webb
parent 5b7969e726
commit 6a45d5bfb0
  1. 16
      spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata/CallMetaDataProvider.java
  2. 10
      spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata/TableMetaDataProvider.java

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2010 the original author or authors. * Copyright 2002-2013 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -56,33 +56,33 @@ public interface CallMetaDataProvider {
/** /**
* Provide any modification of the procedure name passed in to match the meta data currently used. * Provide any modification of the procedure name passed in to match the meta data currently used.
* This could include alterig the case. * This could include altering the case.
*/ */
String procedureNameToUse(String procedureName); String procedureNameToUse(String procedureName);
/** /**
* Provide any modification of the catalog name passed in to match the meta data currently used. * Provide any modification of the catalog name passed in to match the meta data currently used.
* This could include alterig the case. * This could include altering the case.
*/ */
String catalogNameToUse(String catalogName); String catalogNameToUse(String catalogName);
/** /**
* Provide any modification of the schema name passed in to match the meta data currently used. * Provide any modification of the schema name passed in to match the meta data currently used.
* This could include alterig the case. * This could include altering the case.
*/ */
String schemaNameToUse(String schemaName); String schemaNameToUse(String schemaName);
/** /**
* Provide any modification of the catalog name passed in to match the meta data currently used. * Provide any modification of the catalog name passed in to match the meta data currently used.
* The reyurned value will be used for meta data lookups. This could include alterig the case used * The returned value will be used for meta data lookups. This could include altering the case used
* or providing a base catalog if mone provided. * or providing a base catalog if none is provided.
*/ */
String metaDataCatalogNameToUse(String catalogName) ; String metaDataCatalogNameToUse(String catalogName) ;
/** /**
* Provide any modification of the schema name passed in to match the meta data currently used. * Provide any modification of the schema name passed in to match the meta data currently used.
* The reyurned value will be used for meta data lookups. This could include alterig the case used * The returned value will be used for meta data lookups. This could include altering the case used
* or providing a base schema if mone provided. * or providing a base schema if none is provided.
*/ */
String metaDataSchemaNameToUse(String schemaName) ; String metaDataSchemaNameToUse(String schemaName) ;

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2012 the original author or authors. * Copyright 2002-2013 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -76,8 +76,8 @@ public interface TableMetaDataProvider {
/** /**
* Provide any modification of the catalog name passed in to match the meta data currently used. * Provide any modification of the catalog name passed in to match the meta data currently used.
* The reyurned value will be used for meta data lookups. This could include alterig the case used or * The returned value will be used for meta data lookups. This could include altering the case used or
* providing a base catalog if mone provided. * providing a base catalog if none is provided.
* *
* @param catalogName * @param catalogName
* @return catalog name to use * @return catalog name to use
@ -86,8 +86,8 @@ public interface TableMetaDataProvider {
/** /**
* Provide any modification of the schema name passed in to match the meta data currently used. * Provide any modification of the schema name passed in to match the meta data currently used.
* The reyurned value will be used for meta data lookups. This could include alterig the case used or * The returned value will be used for meta data lookups. This could include altering the case used or
* providing a base schema if mone provided. * providing a base schema if none is provided.
* *
* @param schemaName * @param schemaName
* @return schema name to use * @return schema name to use

Loading…
Cancel
Save