
com.jk.data.vendors.mysql.MysqlPhysicalNamingStrategy Maven / Gradle / Ivy
/*
* Copyright 2002-2022 Dr. Jalal Kiswani.
* Email: [email protected]
* Check out https://smart-api.com for more details
*
* All the opensource projects of Dr. Jalal Kiswani are free for personal and academic use only,
* for commercial usage and support, please contact the author.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jk.data.vendors.mysql;
import java.util.Arrays;
import java.util.List;
import com.jk.data.datasource.DefaultPhysicalNamingStrategy;
// TODO: Auto-generated Javadoc
/**
* The Class MysqlPhysicalNamingStrategy.
*/
public class MysqlPhysicalNamingStrategy extends DefaultPhysicalNamingStrategy {
/** The Constant KEYWORDS. */
private static final List KEYWORDS = Arrays.asList(new String[] { "index" });
/**
* Gets the keywords.
*
* @return the keywords
*/
@Override
public List getKeywords() {
return KEYWORDS;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy