mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
15 lines
326 B
Java
15 lines
326 B
Java
package com.avaje.tests.xml.oxm;
|
|
|
|
/**
|
|
* Naming convention used in XML to Object mapping.
|
|
*
|
|
* @author rbygrave
|
|
*/
|
|
public interface OxmNamingConvention {
|
|
|
|
/**
|
|
* Returns the default node/element/attribute name for the given property name.
|
|
*/
|
|
public String getNodeName(String propertyName);
|
|
}
|