use of org.eclipse.persistence.testing.models.jpa.composite.advanced.member_3.SmallProject in project eclipselink by eclipse-ee4j.
the class EmployeePopulator method basicSmallProjectExample9.
public SmallProject basicSmallProjectExample9() {
SmallProject smallProject = createSmallProject();
try {
smallProject.setName("Accounting Query Tool");
smallProject.setDescription("A tool to help accounting query things.");
} catch (Exception exception) {
throw new RuntimeException(exception.toString());
}
return smallProject;
}
use of org.eclipse.persistence.testing.models.jpa.composite.advanced.member_3.SmallProject in project eclipselink by eclipse-ee4j.
the class EmployeePopulator method basicSmallProjectExample5.
public SmallProject basicSmallProjectExample5() {
SmallProject smallProject = createSmallProject();
try {
smallProject.setName("Swirly Dirl");
smallProject.setDescription("A swirlly application to report on the corporations database through TopLink.");
} catch (Exception exception) {
throw new RuntimeException(exception.toString());
}
return smallProject;
}
use of org.eclipse.persistence.testing.models.jpa.composite.advanced.member_3.SmallProject in project eclipselink by eclipse-ee4j.
the class EmployeePopulator method basicSmallProjectExample3.
public SmallProject basicSmallProjectExample3() {
SmallProject smallProject = createSmallProject();
try {
smallProject.setName("TOPEmployee Manager");
smallProject.setDescription("A management application to report on the corporations database through TopLink.");
} catch (Exception exception) {
throw new RuntimeException(exception.toString());
}
return smallProject;
}
use of org.eclipse.persistence.testing.models.jpa.composite.advanced.member_3.SmallProject in project eclipselink by eclipse-ee4j.
the class EmployeePopulator method smallProjectExample5.
public SmallProject smallProjectExample5() {
if (containsObject(SmallProject.class, "0005")) {
return (SmallProject) getObject(SmallProject.class, "0005");
}
SmallProject smallProject = basicSmallProjectExample5();
registerObject(smallProject, "0005");
return smallProject;
}
use of org.eclipse.persistence.testing.models.jpa.composite.advanced.member_3.SmallProject in project eclipselink by eclipse-ee4j.
the class EmployeePopulator method basicSmallProjectExample7.
public SmallProject basicSmallProjectExample7() {
SmallProject smallProject = createSmallProject();
try {
smallProject.setName("Marketing Query Tool");
smallProject.setDescription("A tool to help marketing query things.");
} catch (Exception exception) {
throw new RuntimeException(exception.toString());
}
return smallProject;
}
Aggregations