SEBSERV-45 created exam config pages general and user interface

This commit is contained in:
anhefti 2019-05-15 17:01:12 +02:00
parent 27b75062cc
commit 6f9bacf1eb
124 changed files with 2772 additions and 1300 deletions

View file

@ -31,6 +31,8 @@ public final class Constants {
public static final String FORM_URL_ENCODED_SEPARATOR = "&";
public static final String FORM_URL_ENCODED_NAME_VALUE_SEPARATOR = "=";
public static final String PERCENTAGE = "%";
public static final String DEFAULT_DATE_TIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss'Z'";
public static final String DEFAULT_DISPLAY_DATE_FORMAT = "MM-dd-yyy HH:mm";
public static final String TIME_ZONE_OFFSET_TAIL_FORMAT = "|ZZ";

View file

@ -2,7 +2,7 @@ package ch.ethz.seb.sebserver.gbl.api;
import javax.annotation.Generated;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator",comments="ch.ethz.seb.sebserver.gen.DomainModelNameReferencePlugin",date="2019-04-30T14:19:48.997+02:00")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator",comments="ch.ethz.seb.sebserver.gen.DomainModelNameReferencePlugin",date="2019-05-13T14:59:57.056+02:00")
public enum EntityType {
CONFIGURATION_ATTRIBUTE,
CONFIGURATION_VALUE,

View file

@ -10,8 +10,6 @@ package ch.ethz.seb.sebserver.gbl.async;
import java.util.function.Supplier;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
@ -19,8 +17,6 @@ import org.springframework.stereotype.Service;
@Service
public class AsyncService {
private static final Logger log = LoggerFactory.getLogger(AsyncService.class);
private final AsyncRunner asyncRunner;
protected AsyncService(final AsyncRunner asyncRunner) {

View file

@ -5,7 +5,7 @@ import javax.annotation.Generated;
/** Defines the global names of the domain model and domain model fields.
* This shall be used as a static overall domain model names reference within SEB Server Web-Service as well as within the integrated GUI
* This file is generated by the org.eth.demo.sebserver.gen.DomainModelNameReferencePlugin and must not be edited manually.**/
@Generated(value="org.mybatis.generator.api.MyBatisGenerator",comments="ch.ethz.seb.sebserver.gen.DomainModelNameReferencePlugin",date="2019-04-30T14:19:48.912+02:00")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator",comments="ch.ethz.seb.sebserver.gen.DomainModelNameReferencePlugin",date="2019-05-13T14:59:57.013+02:00")
public interface Domain {
interface CONFIGURATION_ATTRIBUTE {
@ -38,6 +38,7 @@ public interface Domain {
String REFERENCE_NAME = "views";
String ATTR_ID = "id";
String ATTR_NAME = "name";
String ATTR_COLUMNS = "columns";
String ATTR_POSITION = "position";
}

View file

@ -23,8 +23,8 @@ public enum AttributeType {
TEXT_AREA(TEXT),
/** Check Box or boolean type */
CHECKBOX(TEXT),
/** Check Box or boolean type without label (e.g.: used in a table) */
CHECK_FIELD(TEXT),
SLIDER(TEXT),
/** Integer number type */
INTEGER(TEXT),
@ -32,10 +32,14 @@ public enum AttributeType {
DECIMAL(TEXT),
/** Single selection type (Drop-down) */
SINGLE_SELECTION(TEXT),
/** Multiple selection type */
MULTI_SELECTION(LIST),
COMBO_SELECTION(TEXT),
/** Radio selection type (like single selection but with check-boxes) */
RADIO_SELECTION(TEXT),
/** Multiple selection type */
MULTI_SELECTION(LIST),
/** Multiple selection with checkbox type */
MULTI_CHECKBOX_SELECTION(LIST),
FILE_UPLOAD(BASE64_BINARY),

View file

@ -24,6 +24,8 @@ import ch.ethz.seb.sebserver.gbl.model.Entity;
@JsonIgnoreProperties(ignoreUnknown = true)
public final class ConfigurationAttribute implements Entity {
public static final String DEPENDENCY_RESOURCE_LOC_TEXT_KEY = "resourceLocTextKey";
public static final String FILTER_ATTR_PARENT_ID = "parentId";
public static final String FILTER_ATTR_TYPE = "type";

View file

@ -1,6 +1,6 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
@ -11,6 +11,8 @@ package ch.ethz.seb.sebserver.gbl.model.sebconfig;
public enum TitleOrientation {
NONE,
LEFT,
LEFT_SPAN,
RIGHT,
RIGHT_SPAN,
TOP
}

View file

@ -28,6 +28,10 @@ public class View implements Entity {
@JsonProperty(VIEW.ATTR_NAME)
public final String name;
@NotNull
@JsonProperty(VIEW.ATTR_COLUMNS)
public final Integer columns;
@NotNull
@JsonProperty(VIEW.ATTR_POSITION)
public final Integer position;
@ -35,16 +39,19 @@ public class View implements Entity {
public View(
@JsonProperty(VIEW.ATTR_ID) final Long id,
@JsonProperty(VIEW.ATTR_NAME) final String name,
@JsonProperty(VIEW.ATTR_COLUMNS) final Integer columns,
@JsonProperty(VIEW.ATTR_POSITION) final Integer position) {
this.id = id;
this.name = name;
this.columns = columns;
this.position = position;
}
public View(final POSTMapper postParams) {
this.id = null;
this.name = postParams.getString(Domain.VIEW.ATTR_NAME);
this.columns = postParams.getInteger(Domain.VIEW.ATTR_COLUMNS);
this.position = postParams.getInteger(Domain.VIEW.ATTR_POSITION);
}
@ -52,6 +59,10 @@ public class View implements Entity {
return this.position;
}
public Integer getColumns() {
return this.columns;
}
public Long getId() {
return this.id;
}
@ -75,15 +86,8 @@ public class View implements Entity {
@Override
public String toString() {
final StringBuilder builder = new StringBuilder();
builder.append("View [id=");
builder.append(this.id);
builder.append(", name=");
builder.append(this.name);
builder.append(", position=");
builder.append(this.position);
builder.append("]");
return builder.toString();
return "View [id=" + this.id + ", name=" + this.name + ", columns=" + this.columns + ", position="
+ this.position + "]";
}
}

View file

@ -34,6 +34,7 @@ import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import ch.ethz.seb.sebserver.gbl.Constants;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
public final class Utils {
@ -293,4 +294,22 @@ public final class Utils {
return toCharArray(CharBuffer.wrap(chars));
}
public static Map<String, String> getAttributeDependencyMap(final ConfigurationAttribute attribute) {
if (StringUtils.isBlank(attribute.dependencies)) {
return Collections.emptyMap();
}
try {
return Arrays.asList(StringUtils.split(attribute.dependencies, Constants.LIST_SEPARATOR))
.stream()
.map(s -> StringUtils.split(s, Constants.EMBEDDED_LIST_SEPARATOR))
.collect(Collectors.toMap(pair -> pair[0], pair -> pair[1]));
} catch (final Exception e) {
log.error("Unexpected error while trying to parse dependency map of ConfigurationAttribute: {}",
attribute,
e);
return Collections.emptyMap();
}
}
}

View file

@ -16,6 +16,8 @@ import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;
@ -45,8 +47,10 @@ import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
@GuiProfile
public class SebExamConfigPropertiesForm implements TemplateComposer {
private static final Logger log = LoggerFactory.getLogger(SebExamConfigPropertiesForm.class);
private static final String VIEW_TEXT_KEY_PREFIX = "sebserver.examconfig.props.form.views.";
private static final String VIEW_TOOLTIP_TEXT_KEY_PREFIX = "tooltip";
private static final String VIEW_TOOLTIP_TEXT_KEY_SUFFIX = ".tooltip";
private static final LocTextKey TITLE_TEXT_KEY =
new LocTextKey("sebserver.examconfig.props.from.title");
@ -75,58 +79,63 @@ public class SebExamConfigPropertiesForm implements TemplateComposer {
final EntityKey entityKey = pageContext.getEntityKey();
final EntityKey parentEntityKey = pageContext.getParentEntityKey();
final ConfigurationNode configNode = this.restService.getBuilder(GetExamConfigNode.class)
.withURIVariable(API.PARAM_MODEL_ID, entityKey.modelId)
.call()
.onError(pageContext::notifyError)
.getOrThrow();
final Configuration configuration = this.restService.getBuilder(GetConfigurations.class)
.withQueryParam(Configuration.FILTER_ATTR_CONFIGURATION_NODE_ID, configNode.getModelId())
.withQueryParam(Configuration.FILTER_ATTR_FOLLOWUP, Constants.TRUE_STRING)
.call()
.map(Utils::toSingleton)
.onError(pageContext::notifyError)
.getOrThrow();
final Composite content = widgetFactory.defaultPageLayout(
pageContext.getParent(),
TITLE_TEXT_KEY);
final AttributeMapping attributes = this.examConfigurationService
.getAttributes(configNode.templateId)
.onError(pageContext::notifyError)
.getOrThrow();
try {
final List<View> views = this.examConfigurationService.getViews(attributes);
final ConfigurationNode configNode = this.restService.getBuilder(GetExamConfigNode.class)
.withURIVariable(API.PARAM_MODEL_ID, entityKey.modelId)
.call()
.onError(pageContext::notifyError)
.getOrThrow();
final TabFolder tabFolder = widgetFactory.tabFolderLocalized(content);
tabFolder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
final Configuration configuration = this.restService.getBuilder(GetConfigurations.class)
.withQueryParam(Configuration.FILTER_ATTR_CONFIGURATION_NODE_ID, configNode.getModelId())
.withQueryParam(Configuration.FILTER_ATTR_FOLLOWUP, Constants.TRUE_STRING)
.call()
.map(Utils::toSingleton)
.onError(pageContext::notifyError)
.getOrThrow();
final List<ViewContext> viewContexts = new ArrayList<>();
for (final View view : views) {
final ViewContext viewContext = this.examConfigurationService.createViewContext(
pageContext,
configuration,
view,
attributes,
4,
20);
viewContexts.add(viewContext);
final AttributeMapping attributes = this.examConfigurationService
.getAttributes(configNode.templateId)
.onError(pageContext::notifyError)
.getOrThrow();
final Composite viewGrid = this.examConfigurationService.createViewGrid(
tabFolder,
viewContext);
final List<View> views = this.examConfigurationService.getViews(attributes);
final TabItem tabItem = widgetFactory.tabItemLocalized(
tabFolder,
new LocTextKey(VIEW_TEXT_KEY_PREFIX + view.name),
new LocTextKey(VIEW_TEXT_KEY_PREFIX + view.name + VIEW_TOOLTIP_TEXT_KEY_PREFIX));
tabItem.setControl(viewGrid);
final TabFolder tabFolder = widgetFactory.tabFolderLocalized(content);
tabFolder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
final List<ViewContext> viewContexts = new ArrayList<>();
for (final View view : views) {
final ViewContext viewContext = this.examConfigurationService.createViewContext(
pageContext,
configuration,
view,
attributes,
20);
viewContexts.add(viewContext);
final Composite viewGrid = this.examConfigurationService.createViewGrid(
tabFolder,
viewContext);
final TabItem tabItem = widgetFactory.tabItemLocalized(
tabFolder,
new LocTextKey(VIEW_TEXT_KEY_PREFIX + view.name));
tabItem.setControl(viewGrid);
}
this.examConfigurationService.initInputFieldValues(configuration.id, viewContexts);
} catch (final Exception e) {
log.error("Unexpected error while trying to fetch exam configuration data and create views", e);
pageContext.notifyError(e);
}
this.examConfigurationService.initInputFieldValues(configuration.id, viewContexts);
}
}

View file

@ -11,6 +11,7 @@ package ch.ethz.seb.sebserver.gui.service.examconfig;
import java.util.Collection;
import java.util.List;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.swt.widgets.Composite;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Configuration;
@ -20,6 +21,8 @@ import ch.ethz.seb.sebserver.gbl.model.sebconfig.View;
import ch.ethz.seb.sebserver.gbl.util.Result;
import ch.ethz.seb.sebserver.gui.service.examconfig.impl.AttributeMapping;
import ch.ethz.seb.sebserver.gui.service.examconfig.impl.ViewContext;
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
import ch.ethz.seb.sebserver.gui.service.page.PageContext;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
@ -27,6 +30,7 @@ public interface ExamConfigurationService {
public static final String ATTRIBUTE_LABEL_LOC_TEXT_PREFIX = "sebserver.examconfig.props.label.";
public static final String GROUP_LABEL_LOC_TEXT_PREFIX = "sebserver.examconfig.props.group.";
public static final String TOOL_TIP_SUFFIX = ".tooltip";
WidgetFactory getWidgetFactory();
@ -43,7 +47,6 @@ public interface ExamConfigurationService {
Configuration configuration,
View view,
AttributeMapping attributeMapping,
int columns,
int rows);
Composite createViewGrid(
@ -54,4 +57,32 @@ public interface ExamConfigurationService {
Long configurationId,
Collection<ViewContext> viewContexts);
static String attributeNameKey(final ConfigurationAttribute attribute) {
if (attribute == null) {
return null;
}
return ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name;
}
static LocTextKey attributeNameLocKey(final ConfigurationAttribute attribute) {
if (attribute == null) {
return null;
}
return new LocTextKey(attributeNameKey(attribute));
}
static LocTextKey getToolTipKey(
final ConfigurationAttribute attribute,
final I18nSupport i18nSupport) {
final String attributeNameKey = ExamConfigurationService.attributeNameKey(attribute) + TOOL_TIP_SUFFIX;
if (StringUtils.isBlank(i18nSupport.getText(attributeNameKey, ""))) {
return null;
} else {
return new LocTextKey(attributeNameKey);
}
}
}

View file

@ -21,7 +21,7 @@ public interface InputField {
Orientation getOrientation();
void initValue(Collection<ConfigurationValue> values);
ConfigurationValue initValue(Collection<ConfigurationValue> values);
void initValue(final String value, final Integer listIndex);
@ -31,8 +31,10 @@ public interface InputField {
void clearError();
void disable();
void disable(boolean group);
void enable();
void enable(boolean group);
void setDefaultValue();
}

View file

@ -62,6 +62,8 @@ public interface InputFieldBuilder {
final GridLayout gridLayout = new GridLayout(numColumns, true);
gridLayout.verticalSpacing = 0;
gridLayout.marginHeight = 1;
gridLayout.marginWidth = 0;
gridLayout.marginRight = 5;
comp.setLayout(gridLayout);
final GridData gridData = new GridData(

View file

@ -10,6 +10,7 @@ package ch.ethz.seb.sebserver.gui.service.examconfig;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationTableValues;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationValue;
import ch.ethz.seb.sebserver.gui.service.examconfig.impl.ViewContext;
public interface ValueChangeListener {
@ -22,4 +23,9 @@ public interface ValueChangeListener {
void tableChanged(ConfigurationTableValues tableValue);
void notifyGUI(
ViewContext viewContext,
ConfigurationAttribute attribute,
ConfigurationValue initValue);
}

View file

@ -10,8 +10,12 @@ package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import java.util.Collection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationValue;
@ -20,6 +24,8 @@ import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
public abstract class AbstractInputField<T extends Control> implements InputField {
private static final Logger log = LoggerFactory.getLogger(AbstractInputField.class);
protected final ConfigurationAttribute attribute;
protected final Orientation orientation;
protected final T control;
@ -46,17 +52,25 @@ public abstract class AbstractInputField<T extends Control> implements InputFiel
}
@Override
public void disable() {
public void disable(final boolean group) {
if (this.control.isEnabled()) {
setDefaultValue();
this.control.setEnabled(false);
if (group) {
this.control.getParent().getParent().setEnabled(false);
} else {
setDefaultValue();
this.control.setEnabled(false);
}
}
}
@Override
public void enable() {
public void enable(final boolean group) {
if (!this.control.isEnabled()) {
this.control.setEnabled(true);
if (group) {
this.control.getParent().getParent().setEnabled(true);
} else {
this.control.setEnabled(true);
}
}
}
@ -86,11 +100,15 @@ public abstract class AbstractInputField<T extends Control> implements InputFiel
}
@Override
public void initValue(final Collection<ConfigurationValue> values) {
values.stream()
public ConfigurationValue initValue(final Collection<ConfigurationValue> values) {
return values.stream()
.filter(a -> this.attribute.id.equals(a.attributeId))
.findFirst()
.ifPresent(v -> initValue(v.value, v.listIndex));
.map(v -> {
initValue(v.value, v.listIndex);
return v;
})
.orElse(null);
}
@Override
@ -100,8 +118,16 @@ public abstract class AbstractInputField<T extends Control> implements InputFiel
setValueToControl(this.initValue);
}
protected void setDefaultValue() {
@Override
public void setDefaultValue() {
setValueToControl(this.attribute.defaultValue);
final Event event = new Event();
try {
this.control.notifyListeners(SWT.Selection, event);
this.control.notifyListeners(SWT.FocusOut, event);
} catch (final Exception e) {
log.warn("Failed to send value update to server: {}", this.attribute, e);
}
}
protected abstract void setValueToControl(String value);

View file

@ -77,6 +77,7 @@ public class AttributeMapping {
this.attributeGroupMapping = Utils.immutableMapOf(orientations
.stream()
.filter(o -> o.groupId != null)
.map(o -> o.groupId)
.collect(Collectors.toSet())
.stream()
@ -176,6 +177,9 @@ public class AttributeMapping {
}
private List<ConfigurationAttribute> getAttributesOfGroup(final String groupName) {
if (groupName == null) {
return Collections.emptyList();
}
return this.orientationAttributeMapping
.values()
.stream()

View file

@ -0,0 +1,198 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import java.util.Collection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Orientation;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.TitleOrientation;
import ch.ethz.seb.sebserver.gui.service.examconfig.ExamConfigurationService;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputFieldBuilder;
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
interface CellFieldBuilderAdapter {
void createCell(ViewGridBuilder builder);
static CellFieldBuilderAdapter dummyBuilderAdapter() {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
}
@Override
public String toString() {
return "[DUMMY]";
}
};
}
static CellFieldBuilderAdapter fieldBuilderAdapter(
final InputFieldBuilder inputFieldBuilder,
final ConfigurationAttribute attribute) {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
final InputField inputField = inputFieldBuilder.createInputField(
builder.parent,
attribute,
builder.viewContext);
if (inputField != null) {
builder.viewContext.registerInputField(inputField);
}
}
@Override
public String toString() {
return "[FIELD]";
}
};
}
static CellFieldBuilderAdapter labelBuilder(
final ConfigurationAttribute attribute,
final Orientation orientation) {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
final WidgetFactory widgetFactory = builder.examConfigurationService.getWidgetFactory();
final Label label = widgetFactory.labelLocalized(
builder.parent,
new LocTextKey(ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name,
attribute.name));
final GridData gridData = new GridData(SWT.FILL, SWT.TOP, true, false);
switch (orientation.title) {
case LEFT:
case RIGHT: {
label.setAlignment(SWT.LEFT);
gridData.verticalIndent = 5;
break;
}
case LEFT_SPAN:
case RIGHT_SPAN: {
label.setAlignment(SWT.LEFT);
gridData.verticalIndent = 5;
gridData.horizontalSpan = orientation.width;
break;
}
case TOP: {
gridData.horizontalSpan = orientation.width;
label.setAlignment(SWT.LEFT);
break;
}
default: {
label.setAlignment(SWT.LEFT);
}
}
label.setLayoutData(gridData);
label.pack();
}
@Override
public String toString() {
return "[LABEL]";
}
};
}
static CellFieldBuilderAdapter passwordConfirmLabel(
final ConfigurationAttribute attribute,
final Orientation orientation) {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
final WidgetFactory widgetFactory = builder.examConfigurationService.getWidgetFactory();
final Label label = widgetFactory.labelLocalized(
builder.parent,
new LocTextKey(
ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name
+ ".confirm"));
final GridData gridData = new GridData(SWT.FILL, SWT.TOP, true, false);
label.setAlignment(SWT.LEFT);
gridData.verticalIndent = 20;
label.setLayoutData(gridData);
//label.setData(RWT.CUSTOM_VARIANT, CustomVariant.TITLE_LABEL.key);
}
@Override
public String toString() {
return "[PASSWORD CONFIRM LABEL]";
}
};
}
static class GroupCellFieldBuilderAdapter implements CellFieldBuilderAdapter {
final Collection<Orientation> orientationsOfGroup;
int x = 100;
int y = 100;
int width = 1;
int height = 1;
GroupCellFieldBuilderAdapter(final Collection<Orientation> orientationsOfGroup) {
this.orientationsOfGroup = orientationsOfGroup;
for (final Orientation o : this.orientationsOfGroup) {
final int xpos = o.xPosition - ((o.title == TitleOrientation.LEFT) ? 1 : 0);
this.x = (xpos < this.x) ? xpos : this.x;
final int ypos = o.yPosition - ((o.title == TitleOrientation.TOP) ? 1 : 0);
this.y = (ypos < this.y) ? ypos : this.y;
this.width = (this.width < o.xpos() + o.width()) ? o.xpos() + o.width() : this.width;
this.height = (this.height < o.ypos() + o.height()) ? o.ypos() + o.height() : this.height;
}
this.width = this.width - this.x;
this.height = this.height - this.y + 1;
}
@Override
public void createCell(final ViewGridBuilder builder) {
final WidgetFactory widgetFactory = builder.examConfigurationService.getWidgetFactory();
final Orientation o = this.orientationsOfGroup.stream().findFirst().get();
final LocTextKey groupLabelKey = new LocTextKey(
ExamConfigurationService.GROUP_LABEL_LOC_TEXT_PREFIX + o.groupId,
o.groupId);
final Group group = widgetFactory.groupLocalized(
builder.parent,
this.width,
groupLabelKey);
group.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, this.width, this.height));
final ViewGridBuilder groupBuilder = new ViewGridBuilder(
group,
builder.viewContext,
this,
builder.examConfigurationService);
for (final Orientation orientation : this.orientationsOfGroup) {
final ConfigurationAttribute attribute = builder.viewContext.getAttribute(orientation.attributeId);
groupBuilder.add(attribute);
}
groupBuilder.compose();
}
}
}

View file

@ -21,14 +21,23 @@ import ch.ethz.seb.sebserver.gbl.model.sebconfig.AttributeType;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Orientation;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gui.service.examconfig.ExamConfigurationService;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputFieldBuilder;
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
@Lazy
@Component
@GuiProfile
public class CheckBoxBuilder implements InputFieldBuilder {
private final WidgetFactory widgetFactory;
protected CheckBoxBuilder(final WidgetFactory widgetFactory) {
this.widgetFactory = widgetFactory;
}
@Override
public boolean builderFor(
final ConfigurationAttribute attribute,
@ -38,8 +47,7 @@ public class CheckBoxBuilder implements InputFieldBuilder {
return false;
}
return attribute.type == AttributeType.CHECK_FIELD ||
attribute.type == AttributeType.CHECKBOX;
return attribute.type == AttributeType.CHECKBOX;
}
@Override
@ -52,23 +60,32 @@ public class CheckBoxBuilder implements InputFieldBuilder {
Objects.requireNonNull(attribute);
Objects.requireNonNull(viewContext);
final Button checkbox = new Button(parent, SWT.CHECK);
if (attribute.type == AttributeType.CHECKBOX) {
checkbox.setText(attribute.name);
}
final I18nSupport i18nSupport = this.widgetFactory.getI18nSupport();
final Orientation orientation = viewContext
.getOrientation(attribute.id);
final Composite innerGrid = InputFieldBuilder
.createInnerGrid(parent, orientation);
final Button checkbox = this.widgetFactory.buttonLocalized(
innerGrid,
SWT.CHECK,
ExamConfigurationService.attributeNameLocKey(attribute),
ExamConfigurationService.getToolTipKey(attribute, i18nSupport));
final CheckboxField checkboxField = new CheckboxField(
attribute,
viewContext.getOrientation(attribute.id),
checkbox);
checkbox.addListener(
SWT.Selection,
event -> viewContext.getValueChangeListener().valueChanged(
viewContext,
attribute,
String.valueOf(checkbox.getSelection()),
0));
checkboxField.getValue(),
checkboxField.listIndex));
return new CheckboxField(
attribute,
viewContext.getOrientation(attribute.id),
checkbox);
return checkboxField;
}
static final class CheckboxField extends AbstractInputField<Button> {
@ -78,7 +95,9 @@ public class CheckBoxBuilder implements InputFieldBuilder {
final Orientation orientation,
final Button control) {
super(attribute, orientation, control, null);
super(attribute, orientation, control, (orientation.groupId == null)
? InputFieldBuilder.createErrorLabel(control.getParent())
: null);
}
@Override

View file

@ -143,13 +143,11 @@ public class ExamConfigurationServiceImpl implements ExamConfigurationService {
final Configuration configuration,
final View view,
final AttributeMapping attributeMapping,
final int columns,
final int rows) {
return new ViewContext(
configuration,
view,
columns,
rows,
attributeMapping,
new ValueChangeListenerImpl(
@ -175,7 +173,10 @@ public class ExamConfigurationServiceImpl implements ExamConfigurationService {
this);
for (final ConfigurationAttribute attribute : viewContext.getAttributes()) {
viewGridBuilder.add(attribute);
final Orientation orientation = viewContext.getOrientation(attribute.id);
if (orientation != null && viewContext.getId().equals(orientation.viewId)) {
viewGridBuilder.add(attribute);
}
}
viewGridBuilder.compose();
@ -253,9 +254,7 @@ public class ExamConfigurationServiceImpl implements ExamConfigurationService {
if (savedValue.hasError()) {
context.showError(attribute.id, verifyErrorMessage(savedValue.getError()));
} else {
this.valueChangeRules.stream()
.filter(rule -> rule.observesAttribute(attribute))
.forEach(rule -> rule.applyRule(context, attribute, savedValue.get()));
this.notifyGUI(context, attribute, savedValue.get());
}
} catch (final Exception e) {
@ -291,6 +290,18 @@ public class ExamConfigurationServiceImpl implements ExamConfigurationService {
log.warn("Unexpected error happened while trying to set SEB configuration value: ", error);
return VALIDATION_ERROR_KEY_PREFIX + "unexpected";
}
@Override
public void notifyGUI(
final ViewContext viewContext,
final ConfigurationAttribute attribute,
final ConfigurationValue value) {
this.valueChangeRules.stream()
.filter(rule -> rule.observesAttribute(attribute))
.forEach(rule -> rule.applyRule(viewContext, attribute, value));
}
}
}

View file

@ -0,0 +1,107 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.AttributeType;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Orientation;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputFieldBuilder;
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
import ch.ethz.seb.sebserver.gui.widget.MultiSelectionCheckbox;
import ch.ethz.seb.sebserver.gui.widget.Selection;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
@Lazy
@Component
@GuiProfile
public class MultiCheckboxSelection extends SelectionFieldBuilder implements InputFieldBuilder {
private final WidgetFactory widgetFactory;
protected MultiCheckboxSelection(final WidgetFactory widgetFactory) {
this.widgetFactory = widgetFactory;
}
@Override
public boolean builderFor(
final ConfigurationAttribute attribute,
final Orientation orientation) {
return attribute != null && attribute.type == AttributeType.MULTI_CHECKBOX_SELECTION;
}
@Override
public InputField createInputField(
final Composite parent,
final ConfigurationAttribute attribute,
final ViewContext viewContext) {
final I18nSupport i18nSupport = this.widgetFactory.getI18nSupport();
final Orientation orientation = viewContext
.getOrientation(attribute.id);
final Composite innerGrid = InputFieldBuilder
.createInnerGrid(parent, orientation);
final MultiSelectionCheckbox selection = this.widgetFactory.selectionLocalized(
Selection.Type.MULTI_CHECKBOX,
innerGrid,
() -> this.getLocalizedResources(attribute, i18nSupport),
null,
() -> this.getLocalizedResourcesAsToolTip(attribute, i18nSupport))
.getTypeInstance();
selection.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
final MultiSelectionCheckboxInputField multiSelectionCheckboxInputField = new MultiSelectionCheckboxInputField(
attribute,
orientation,
selection);
selection.setSelectionListener(event -> {
multiSelectionCheckboxInputField.clearError();
viewContext.getValueChangeListener().valueChanged(
viewContext,
attribute,
multiSelectionCheckboxInputField.getValue(),
multiSelectionCheckboxInputField.listIndex);
});
return multiSelectionCheckboxInputField;
}
static final class MultiSelectionCheckboxInputField extends AbstractInputField<MultiSelectionCheckbox> {
protected MultiSelectionCheckboxInputField(
final ConfigurationAttribute attribute,
final Orientation orientation,
final MultiSelectionCheckbox control) {
super(attribute, orientation, control, null);
}
@Override
public String getValue() {
return super.control.getSelectionValue();
}
@Override
protected void setValueToControl(final String value) {
super.control.select(value);
}
}
}

View file

@ -70,7 +70,7 @@ public class PassworFieldBuilder implements InputFieldBuilder {
passwordInput.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
final Text confirmInput = new Text(innerGrid, SWT.LEFT | SWT.BORDER | SWT.PASSWORD);
final GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, false);
gridData.verticalIndent = 5;
gridData.verticalIndent = 14;
confirmInput.setLayoutData(gridData);
final PasswordInputField passwordInputField = new PasswordInputField(

View file

@ -0,0 +1,112 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.AttributeType;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Orientation;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputFieldBuilder;
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
import ch.ethz.seb.sebserver.gui.widget.RadioSelection;
import ch.ethz.seb.sebserver.gui.widget.Selection;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
@Lazy
@Component
@GuiProfile
public class RadioSelectionFieldBuilder extends SelectionFieldBuilder implements InputFieldBuilder {
private final WidgetFactory widgetFactory;
protected RadioSelectionFieldBuilder(final WidgetFactory widgetFactory) {
this.widgetFactory = widgetFactory;
}
@Override
public boolean builderFor(
final ConfigurationAttribute attribute,
final Orientation orientation) {
return attribute != null &&
attribute.type == AttributeType.RADIO_SELECTION;
}
@Override
public InputField createInputField(
final Composite parent,
final ConfigurationAttribute attribute,
final ViewContext viewContext) {
final I18nSupport i18nSupport = this.widgetFactory.getI18nSupport();
final Orientation orientation = viewContext
.getOrientation(attribute.id);
final Composite innerGrid = InputFieldBuilder
.createInnerGrid(parent, orientation);
final RadioSelection selection = this.widgetFactory.selectionLocalized(
Selection.Type.RADIO,
innerGrid,
() -> this.getLocalizedResources(attribute, i18nSupport),
null,
() -> this.getLocalizedResourcesAsToolTip(attribute, i18nSupport))
.getTypeInstance();
selection.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
final RadioSelectionInputField radioSelectionInputField = new RadioSelectionInputField(
attribute,
orientation,
selection,
InputFieldBuilder.createErrorLabel(innerGrid));
selection.setSelectionListener(event -> {
radioSelectionInputField.clearError();
viewContext.getValueChangeListener().valueChanged(
viewContext,
attribute,
radioSelectionInputField.getValue(),
radioSelectionInputField.listIndex);
});
return radioSelectionInputField;
}
static final class RadioSelectionInputField extends AbstractInputField<RadioSelection> {
protected RadioSelectionInputField(
final ConfigurationAttribute attribute,
final Orientation orientation,
final RadioSelection control,
final Label errorLabel) {
super(attribute, orientation, control, errorLabel);
}
@Override
public String getValue() {
return super.control.getSelectionValue();
}
@Override
protected void setValueToControl(final String value) {
super.control.select(value);
}
}
}

View file

@ -0,0 +1,75 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import org.apache.commons.lang3.StringUtils;
import ch.ethz.seb.sebserver.gbl.Constants;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.util.Tuple;
import ch.ethz.seb.sebserver.gbl.util.Utils;
import ch.ethz.seb.sebserver.gui.service.examconfig.ExamConfigurationService;
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
public abstract class SelectionFieldBuilder {
protected List<Tuple<String>> getLocalizedResources(
final ConfigurationAttribute attribute,
final I18nSupport i18nSupport) {
return getLocalizedRes(attribute, i18nSupport, false);
}
protected List<Tuple<String>> getLocalizedResourcesAsToolTip(
final ConfigurationAttribute attribute,
final I18nSupport i18nSupport) {
return getLocalizedRes(attribute, i18nSupport, true);
}
private List<Tuple<String>> getLocalizedRes(
final ConfigurationAttribute attribute,
final I18nSupport i18nSupport,
final boolean toolTipResources) {
if (attribute == null) {
return Collections.emptyList();
}
final Map<String, String> attributeDependencyMap = Utils.getAttributeDependencyMap(attribute);
final String prefix =
(attributeDependencyMap.containsKey(ConfigurationAttribute.DEPENDENCY_RESOURCE_LOC_TEXT_KEY))
? attributeDependencyMap.get(ConfigurationAttribute.DEPENDENCY_RESOURCE_LOC_TEXT_KEY) + "."
: ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name + ".";
return Arrays.asList(StringUtils.split(
attribute.resources,
Constants.LIST_SEPARATOR))
.stream()
.map(value -> {
final String key = prefix + value + ((toolTipResources)
? ExamConfigurationService.TOOL_TIP_SUFFIX
: "");
final String text = i18nSupport.getText(key, "");
return new Tuple<>(value, (StringUtils.isBlank(text))
? (toolTipResources)
? text
: value
: text);
})
.collect(Collectors.toList());
}
}

View file

@ -8,28 +8,21 @@
package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;
import ch.ethz.seb.sebserver.gbl.Constants;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.AttributeType;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Orientation;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gbl.util.Tuple;
import ch.ethz.seb.sebserver.gui.service.examconfig.ExamConfigurationService;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputFieldBuilder;
import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
import ch.ethz.seb.sebserver.gui.widget.Selection;
import ch.ethz.seb.sebserver.gui.widget.SingleSelection;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
@ -37,7 +30,7 @@ import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
@Lazy
@Component
@GuiProfile
public class SingleSelectionFieldBuilder implements InputFieldBuilder {
public class SingleSelectionFieldBuilder extends SelectionFieldBuilder implements InputFieldBuilder {
private final WidgetFactory widgetFactory;
@ -50,7 +43,8 @@ public class SingleSelectionFieldBuilder implements InputFieldBuilder {
final ConfigurationAttribute attribute,
final Orientation orientation) {
return attribute.type == AttributeType.SINGLE_SELECTION;
return attribute.type == AttributeType.SINGLE_SELECTION ||
attribute.type == AttributeType.COMBO_SELECTION;
}
@Override
@ -59,17 +53,22 @@ public class SingleSelectionFieldBuilder implements InputFieldBuilder {
final ConfigurationAttribute attribute,
final ViewContext viewContext) {
final I18nSupport i18nSupport = this.widgetFactory.getI18nSupport();
final Orientation orientation = viewContext
.getOrientation(attribute.id);
final Composite innerGrid = InputFieldBuilder
.createInnerGrid(parent, orientation);
final SingleSelection selection = this.widgetFactory.selectionLocalized(
Selection.Type.SINGLE,
(attribute.type == AttributeType.COMBO_SELECTION)
? Selection.Type.SINGLE_COMBO
: Selection.Type.SINGLE,
innerGrid,
() -> this.getLocalizedResources(attribute))
() -> this.getLocalizedResources(attribute, i18nSupport),
ExamConfigurationService.getToolTipKey(attribute, i18nSupport))
.getTypeInstance();
selection.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
final SingleSelectionInputField singleSelectionInputField = new SingleSelectionInputField(
attribute,
orientation,
@ -81,30 +80,11 @@ public class SingleSelectionFieldBuilder implements InputFieldBuilder {
viewContext.getValueChangeListener().valueChanged(
viewContext,
attribute,
String.valueOf(selection.getSelectionValue()),
singleSelectionInputField.getValue(),
singleSelectionInputField.listIndex);
});
return null;
}
private List<Tuple<String>> getLocalizedResources(final ConfigurationAttribute attribute) {
if (attribute == null) {
return Collections.emptyList();
}
final I18nSupport i18nSupport = this.widgetFactory.getI18nSupport();
final String prefix = ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name + ".";
return Arrays.asList(StringUtils.split(
attribute.resources,
Constants.LIST_SEPARATOR))
.stream()
.map(value -> new Tuple<>(
value,
i18nSupport.getText(
new LocTextKey(prefix + value),
value)))
.collect(Collectors.toList());
return singleSelectionInputField;
}
static final class SingleSelectionInputField extends AbstractInputField<SingleSelection> {

View file

@ -0,0 +1,115 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Slider;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;
import ch.ethz.seb.sebserver.gbl.Constants;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.AttributeType;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Orientation;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputFieldBuilder;
@Lazy
@Component
@GuiProfile
public class SliderFieldBuilder implements InputFieldBuilder {
public SliderFieldBuilder() {
// TODO Auto-generated constructor stub
}
@Override
public boolean builderFor(
final ConfigurationAttribute attribute,
final Orientation orientation) {
return attribute != null && attribute.type == AttributeType.SLIDER;
}
@Override
public InputField createInputField(
final Composite parent,
final ConfigurationAttribute attribute,
final ViewContext viewContext) {
final Orientation orientation = viewContext
.getOrientation(attribute.id);
final Composite innerGrid = InputFieldBuilder
.createInnerGrid(parent, orientation);
final Slider slider = new Slider(innerGrid, SWT.NONE);
slider.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
try {
final String[] split = StringUtils.split(
attribute.getResources(),
Constants.LIST_SEPARATOR);
slider.setMinimum(Integer.parseInt(split[0]));
slider.setMaximum(Integer.parseInt(split[1]));
} catch (final Exception e) {
slider.setMinimum(0);
slider.setMaximum(100);
}
final SliderInputField inputField = new SliderInputField(
attribute,
orientation,
slider);
final Listener valueChangeEventListener = event -> {
inputField.clearError();
viewContext.getValueChangeListener().valueChanged(
viewContext,
attribute,
inputField.getValue(),
inputField.listIndex);
};
slider.addListener(SWT.FocusOut, valueChangeEventListener);
slider.addListener(SWT.Traverse, valueChangeEventListener);
return inputField;
}
static final class SliderInputField extends AbstractInputField<Slider> {
SliderInputField(
final ConfigurationAttribute attribute,
final Orientation orientation,
final Slider control) {
super(attribute, orientation, control, null);
}
@Override
protected void setValueToControl(final String value) {
try {
this.control.setSelection(Integer.parseInt(value));
} catch (final Exception e) {
this.control.setSelection(this.control.getMinimum());
}
}
@Override
public String getValue() {
return String.valueOf(this.control.getSelection());
}
}
}

View file

@ -188,7 +188,7 @@ public class TableFieldBuilder implements InputFieldBuilder {
}
@Override
public void initValue(final Collection<ConfigurationValue> values) {
public ConfigurationValue initValue(final Collection<ConfigurationValue> values) {
clearTable();
// get all child values as TableValues
final List<TableValue> tableValues = values.stream()
@ -215,6 +215,8 @@ public class TableFieldBuilder implements InputFieldBuilder {
this.values.add(rowValues);
addTableRow(rowValues);
});
return null;
}
private boolean isChildValue(final ConfigurationValue value) {
@ -327,7 +329,7 @@ public class TableFieldBuilder implements InputFieldBuilder {
}
@Override
protected void setDefaultValue() {
public void setDefaultValue() {
// NOTE this just empty the list for now
// TODO do we need default values for lists?
clearTable();

View file

@ -110,11 +110,11 @@ public class TableRowFormBuilder implements ModalInputDialogComposer<Map<Long, T
private void createLabel(final Composite parent, final ConfigurationAttribute attribute) {
final LocTextKey locTextKey = new LocTextKey(
ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX +
attribute.name);
ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name,
attribute.name);
final Label label = this.tableContext
.getWidgetFactory()
.labelLocalized(parent, locTextKey, attribute.name);
.labelLocalized(parent, locTextKey);
final GridData gridData = new GridData(SWT.LEFT, SWT.TOP, true, false);
gridData.verticalIndent = 4;
label.setLayoutData(gridData);

View file

@ -76,7 +76,7 @@ public class TextFieldBuilder implements InputFieldBuilder {
viewContext.getValueChangeListener().valueChanged(
viewContext,
attribute,
String.valueOf(text.getText()),
textInputField.getValue(),
textInputField.listIndex);
};

View file

@ -13,6 +13,9 @@ import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Configuration;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationValue;
@ -24,9 +27,11 @@ import ch.ethz.seb.sebserver.gui.service.i18n.I18nSupport;
public final class ViewContext {
private static final Logger log = LoggerFactory.getLogger(ViewContext.class);
private final Configuration configuration;
private final View view;
private final int columns, rows;
private final int rows;
private final AttributeMapping attributeMapping;
private final Map<Long, InputField> inputFieldMapping;
@ -36,7 +41,6 @@ public final class ViewContext {
ViewContext(
final Configuration configuration,
final View view,
final int columns,
final int rows,
final AttributeMapping attributeContext,
final ValueChangeListener valueChangeListener,
@ -49,7 +53,6 @@ public final class ViewContext {
this.configuration = configuration;
this.view = view;
this.columns = columns;
this.rows = rows;
this.attributeMapping = attributeContext;
@ -79,7 +82,7 @@ public final class ViewContext {
}
public int getColumns() {
return this.columns;
return this.view.columns;
}
public int getRows() {
@ -110,6 +113,18 @@ public final class ViewContext {
return this.attributeMapping.getAttribute(attributeId);
}
public Long getAttributeIdByName(final String name) {
return this.attributeMapping.attributeNameIdMapping.get(name);
}
public ConfigurationAttribute getAttributeByName(final String name) {
final Long attributeId = this.attributeMapping.attributeNameIdMapping.get(name);
if (attributeId != null) {
return getAttribute(attributeId);
}
return null;
}
public Collection<Orientation> getOrientationsOfGroup(final ConfigurationAttribute attribute) {
return this.attributeMapping.getOrientationsOfGroup(attribute);
}
@ -122,6 +137,69 @@ public final class ViewContext {
return this.valueChangeListener;
}
public void disable(final String attributeName) {
disable(this.getAttributeIdByName(attributeName));
}
public void disable(final Long attributeId) {
final InputField inputField = this.inputFieldMapping.get(attributeId);
if (inputField == null) {
return;
}
inputField.disable(false);
}
public void enable(final String attributeName) {
enable(this.getAttributeIdByName(attributeName));
}
public void enable(final Long attributeId) {
final InputField inputField = this.inputFieldMapping.get(attributeId);
if (inputField == null) {
return;
}
inputField.enable(false);
}
public void disableGroup(final String attributeName) {
disableGroup(this.getAttributeIdByName(attributeName));
}
public void disableGroup(final Long attributeId) {
final InputField inputField = this.inputFieldMapping.get(attributeId);
if (inputField == null) {
return;
}
inputField.disable(true);
try {
this.attributeMapping.attributeGroupMapping
.get(inputField.getOrientation().groupId)
.stream()
.map(ConfigurationAttribute::getId)
.map(this.inputFieldMapping::get)
.forEach(InputField::setDefaultValue);
} catch (final Exception e) {
log.warn("Failed to send attribute value update to server: ", e);
}
}
public void enableGroup(final String attributeName) {
enableGroup(this.getAttributeIdByName(attributeName));
}
public void enableGroup(final Long attributeId) {
final InputField inputField = this.inputFieldMapping.get(attributeId);
if (inputField == null) {
return;
}
inputField.enable(true);
}
public void showError(final Long attributeId, final String errorMessage) {
final InputField inputField = this.inputFieldMapping.get(attributeId);
if (inputField == null) {
@ -150,7 +228,12 @@ public final class ViewContext {
this.inputFieldMapping
.values()
.stream()
.forEach(field -> field.initValue(values));
.forEach(field -> {
final ConfigurationValue initValue = field.initValue(values);
if (initValue != null) {
this.valueChangeListener.notifyGUI(this, field.getAttribute(), initValue);
}
});
}
/** Removes all registered InputFields with the given attribute ids

View file

@ -8,17 +8,14 @@
package ch.ethz.seb.sebserver.gui.service.examconfig.impl;
import java.util.Collection;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.rap.rwt.RWT;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -27,20 +24,19 @@ import ch.ethz.seb.sebserver.gbl.model.sebconfig.AttributeType;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.Orientation;
import ch.ethz.seb.sebserver.gui.service.examconfig.ExamConfigurationService;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputField;
import ch.ethz.seb.sebserver.gui.service.examconfig.InputFieldBuilder;
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory.CustomVariant;
import ch.ethz.seb.sebserver.gui.service.examconfig.impl.CellFieldBuilderAdapter.GroupCellFieldBuilderAdapter;
public class ViewGridBuilder {
private static final Logger log = LoggerFactory.getLogger(ViewGridBuilder.class);
private final ExamConfigurationService examConfigurationService;
private final Composite parent;
private final ViewContext viewContext;
final ExamConfigurationService examConfigurationService;
final Composite parent;
final ViewContext viewContext;
private final CellFieldBuilderAdapter[][] grid;
private final GroupCellFieldBuilderAdapter groupBuilderAdapter;
private final Set<String> registeredGroups;
ViewGridBuilder(
@ -52,9 +48,24 @@ public class ViewGridBuilder {
this.parent = parent;
this.viewContext = viewContext;
this.grid = new CellFieldBuilderAdapter[viewContext.getRows()][viewContext.getColumns()];
this.groupBuilderAdapter = null;
this.registeredGroups = new HashSet<>();
}
ViewGridBuilder(
final Composite parent,
final ViewContext viewContext,
final GroupCellFieldBuilderAdapter groupBuilderAdapter,
final ExamConfigurationService examConfigurationService) {
this.examConfigurationService = examConfigurationService;
this.parent = parent;
this.viewContext = viewContext;
this.groupBuilderAdapter = groupBuilderAdapter;
this.grid = new CellFieldBuilderAdapter[groupBuilderAdapter.height - 1][groupBuilderAdapter.width];
this.registeredGroups = null;
}
ViewGridBuilder add(final ConfigurationAttribute attribute) {
// ignore nested attributes here
if (attribute.parentId != null) {
@ -64,14 +75,14 @@ public class ViewGridBuilder {
final Orientation orientation = this.viewContext
.getOrientation(attribute.id);
// create group builder
if (StringUtils.isNotBlank(orientation.groupId)) {
// create group if this is not a group builder
if (this.groupBuilderAdapter == null && StringUtils.isNotBlank(orientation.groupId)) {
if (this.registeredGroups.contains(orientation.groupId)) {
return this;
}
final GroupCellFieldBuilderAdapter groupBuilder =
new GroupCellFieldBuilderAdapter(this, attribute);
new GroupCellFieldBuilderAdapter(this.viewContext.getOrientationsOfGroup(attribute));
fillDummy(groupBuilder.x, groupBuilder.y, groupBuilder.width, groupBuilder.height);
this.grid[groupBuilder.y][groupBuilder.x] = groupBuilder;
@ -80,8 +91,8 @@ public class ViewGridBuilder {
}
// create single input field with label
final int xpos = orientation.xpos();
final int ypos = orientation.ypos();
final int xpos = orientation.xpos() + ((this.groupBuilderAdapter != null) ? -this.groupBuilderAdapter.x : 0);
final int ypos = orientation.ypos() + ((this.groupBuilderAdapter != null) ? -this.groupBuilderAdapter.y : 0);
if (orientation.width > 1 || orientation.height > 1) {
fillDummy(xpos, ypos, orientation.width, orientation.height);
@ -91,26 +102,43 @@ public class ViewGridBuilder {
attribute,
orientation);
this.grid[ypos][xpos] = fieldBuilderAdapter(
this.grid[ypos][xpos] = CellFieldBuilderAdapter.fieldBuilderAdapter(
inputFieldBuilder,
attribute);
try {
switch (orientation.title) {
case RIGHT: {
this.grid[ypos][xpos + 1] = labelBuilder(attribute, orientation);
case RIGHT:
case RIGHT_SPAN: {
this.grid[ypos][xpos + 1] = CellFieldBuilderAdapter.labelBuilder(
attribute,
orientation);
break;
}
case LEFT: {
this.grid[ypos][xpos - 1] = labelBuilder(attribute, orientation);
this.grid[ypos][xpos - 1] = CellFieldBuilderAdapter.labelBuilder(
attribute,
orientation);
// special case for password, also add confirm label
if (attribute.type == AttributeType.PASSWORD_FIELD) {
this.grid[ypos + 1][xpos - 1] = passwordConfirmLabel(attribute, orientation);
this.grid[ypos + 1][xpos - 1] = CellFieldBuilderAdapter.passwordConfirmLabel(
attribute,
orientation);
}
break;
}
case LEFT_SPAN: {
fillDummy(xpos - orientation.width, ypos, orientation.width, 1);
this.grid[ypos][xpos - orientation.width] = CellFieldBuilderAdapter.labelBuilder(
attribute,
orientation);
break;
}
case TOP: {
this.grid[ypos - 1][xpos] = labelBuilder(attribute, orientation);
fillDummy(xpos, ypos - 1, orientation.width, 1);
this.grid[ypos - 1][xpos] = CellFieldBuilderAdapter.labelBuilder(
attribute,
orientation);
break;
}
default: {
@ -124,11 +152,23 @@ public class ViewGridBuilder {
}
void compose() {
if (log.isDebugEnabled()) {
log.debug("Compose grid view: \n" + gridToString());
}
for (int y = 0; y < this.grid.length; y++) {
for (int x = 0; x < this.grid[y].length; x++) {
if (this.grid[y][x] != null) {
}
}
}
for (int y = 0; y < this.grid.length; y++) {
for (int x = 0; x < this.grid[y].length; x++) {
if (this.grid[y][x] == null) {
final Label empty = new Label(this.parent, SWT.LEFT);
final GridData gridData = new GridData(SWT.FILL, SWT.FILL, true, false);
gridData.verticalIndent = 8;
empty.setLayoutData(gridData);
empty.setText("");
} else {
@ -138,184 +178,25 @@ public class ViewGridBuilder {
}
}
private static interface CellFieldBuilderAdapter {
void createCell(ViewGridBuilder builder);
}
private CellFieldBuilderAdapter dummyBuilderAdapter() {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
}
@Override
public String toString() {
return "[DUMMY]";
}
};
}
private final CellFieldBuilderAdapter fieldBuilderAdapter(
final InputFieldBuilder inputFieldBuilder,
final ConfigurationAttribute attribute) {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
final InputField inputField = inputFieldBuilder.createInputField(
ViewGridBuilder.this.parent,
attribute,
ViewGridBuilder.this.viewContext);
ViewGridBuilder.this.viewContext.registerInputField(inputField);
}
@Override
public String toString() {
return "[FIELD]";
}
};
}
private CellFieldBuilderAdapter labelBuilder(
final ConfigurationAttribute attribute,
final Orientation orientation) {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
final WidgetFactory widgetFactory = builder.examConfigurationService.getWidgetFactory();
final Label label = widgetFactory.labelLocalized(
ViewGridBuilder.this.parent,
new LocTextKey(ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name),
attribute.name);
label.setData(RWT.CUSTOM_VARIANT, CustomVariant.TITLE_LABEL.key);
final GridData gridData = new GridData(SWT.FILL, SWT.TOP, true, false);
switch (orientation.title) {
case LEFT:
case RIGHT: {
label.setAlignment(SWT.LEFT);
gridData.verticalIndent = 5;
break;
}
case TOP: {
label.setAlignment(SWT.LEFT);
break;
}
default: {
label.setAlignment(SWT.LEFT);
}
}
label.setLayoutData(gridData);
}
};
}
private CellFieldBuilderAdapter passwordConfirmLabel(
final ConfigurationAttribute attribute,
final Orientation orientation) {
return new CellFieldBuilderAdapter() {
@Override
public void createCell(final ViewGridBuilder builder) {
final WidgetFactory widgetFactory = builder.examConfigurationService.getWidgetFactory();
final Label label = widgetFactory.labelLocalized(
ViewGridBuilder.this.parent,
new LocTextKey(
ExamConfigurationService.ATTRIBUTE_LABEL_LOC_TEXT_PREFIX + attribute.name + ".confirm"),
"Confirm Password");
final GridData gridData = new GridData(SWT.FILL, SWT.TOP, true, false);
label.setAlignment(SWT.LEFT);
gridData.verticalIndent = 10;
label.setLayoutData(gridData);
label.setData(RWT.CUSTOM_VARIANT, CustomVariant.TITLE_LABEL.key);
}
};
}
private static class GroupCellFieldBuilderAdapter implements CellFieldBuilderAdapter {
final ViewGridBuilder builder;
final ConfigurationAttribute attribute;
final Collection<Orientation> orientationsOfGroup;
int x = 0;
final int y = 0;
int width = 1;
int height = 1;
GroupCellFieldBuilderAdapter(
final ViewGridBuilder builder,
final ConfigurationAttribute attribute) {
this.builder = builder;
this.attribute = attribute;
this.orientationsOfGroup =
builder.viewContext.getOrientationsOfGroup(attribute);
for (final Orientation o : this.orientationsOfGroup) {
this.x = (this.x < o.xpos()) ? o.xpos() : this.x;
this.x = (this.y < o.ypos()) ? o.ypos() : this.y;
this.width = (this.width < o.xpos() + o.width()) ? o.xpos() + o.width() : this.width;
this.height = (this.height < o.ypos() + o.height()) ? o.ypos() + o.height() : this.height;
}
this.width = this.width - this.x;
this.height = this.height - this.y + 2;
}
@Override
public void createCell(final ViewGridBuilder builder) {
final Group group = new Group(builder.parent, SWT.NONE);
group.setLayout(new GridLayout(this.width, true));
group.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false, this.width, this.height));
// TODO needs localization?
final Orientation o = this.orientationsOfGroup.stream().findFirst().get();
if (o != null) {
group.setText(o.groupId);
}
for (final Orientation orientation : this.orientationsOfGroup) {
final InputFieldBuilder inputComponentBuilder = builder.examConfigurationService
.getInputFieldBuilder(this.attribute, orientation);
createSingleInputField(group, orientation, inputComponentBuilder);
}
}
private void createSingleInputField(
final Group group,
final Orientation orientation,
final InputFieldBuilder inputFieldBuilder) {
final ConfigurationAttribute attr = this.builder.viewContext
.getAttribute(orientation.attributeId);
final InputField inputField = inputFieldBuilder.createInputField(
group,
attr,
this.builder.viewContext);
this.builder.viewContext.registerInputField(inputField);
}
}
private void fillDummy(final int x, final int y, final int width, final int height) {
final int upperBoundX = x + width;
final int upperBoundY = y + height;
for (int _y = y; _y < upperBoundY; _y++) {
for (int _x = x; _x < upperBoundX; _x++) {
this.grid[_y][_x] = dummyBuilderAdapter();
this.grid[_y][_x] = CellFieldBuilderAdapter.dummyBuilderAdapter();
}
}
}
private String gridToString() {
final StringBuffer sb = new StringBuffer();
for (int i = 0; i < this.grid.length; i++) {
if (sb.length() > 0) {
sb.append(",\n");
}
sb.append(Arrays.toString(this.grid[i]));
}
return sb.toString();
}
}

View file

@ -0,0 +1,74 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl.rules;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationValue;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gui.service.examconfig.ValueChangeRule;
import ch.ethz.seb.sebserver.gui.service.examconfig.impl.ViewContext;
@Lazy
@Service
@GuiProfile
public class BrowserViewModeRule implements ValueChangeRule {
private static final Logger log = LoggerFactory.getLogger(BrowserViewModeRule.class);
public static final String KEY_BROWSER_VIEW_MODE = "browserViewMode";
public static final String KEY_TOUCH_EXIT = "enableTouchExit";
public static final String KEY_MAIN_WINDOW_GROUP = "mainBrowserWindowWidth";
@Override
public boolean observesAttribute(final ConfigurationAttribute attribute) {
return KEY_BROWSER_VIEW_MODE.equals(attribute.name);
}
@Override
public void applyRule(
final ViewContext context,
final ConfigurationAttribute attribut,
final ConfigurationValue value) {
if (StringUtils.isBlank(value.value)) {
return;
}
try {
context.enable(KEY_TOUCH_EXIT);
context.enableGroup(KEY_MAIN_WINDOW_GROUP);
switch (Integer.parseInt(value.value)) {
case 0: {
context.disable(KEY_TOUCH_EXIT);
break;
}
case 1: {
context.disable(KEY_TOUCH_EXIT);
context.disableGroup(KEY_MAIN_WINDOW_GROUP);
break;
}
case 2: {
context.disableGroup(KEY_MAIN_WINDOW_GROUP);
break;
}
}
} catch (final Exception e) {
log.warn("Failed to apply rule: ", e);
}
}
}

View file

@ -0,0 +1,46 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl.rules;
import org.apache.commons.lang3.BooleanUtils;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationValue;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gui.service.examconfig.ValueChangeRule;
import ch.ethz.seb.sebserver.gui.service.examconfig.impl.ViewContext;
@Lazy
@Service
@GuiProfile
public class ExitKeySequenceChangeRule implements ValueChangeRule {
public static final String KEY_EXIT_SEQUENCE = "exitKey1";
public static final String KEY_SEQUENCE_ATTR_NAME = "ignoreExitKeys";
@Override
public boolean observesAttribute(final ConfigurationAttribute attribute) {
return KEY_SEQUENCE_ATTR_NAME.equals(attribute.name);
}
@Override
public void applyRule(
final ViewContext context,
final ConfigurationAttribute attribut,
final ConfigurationValue value) {
if (BooleanUtils.toBoolean(value.value)) {
context.disableGroup(KEY_EXIT_SEQUENCE);
} else {
context.enableGroup(KEY_EXIT_SEQUENCE);
}
}
}

View file

@ -0,0 +1,47 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.service.examconfig.impl.rules;
import org.apache.commons.lang3.BooleanUtils;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationAttribute;
import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationValue;
import ch.ethz.seb.sebserver.gbl.profile.GuiProfile;
import ch.ethz.seb.sebserver.gui.service.examconfig.ValueChangeRule;
import ch.ethz.seb.sebserver.gui.service.examconfig.impl.ViewContext;
@Lazy
@Service
@GuiProfile
public class HideToolbarDefaultRule implements ValueChangeRule {
public static final String KEY_ENABLE_TOOLBAR = "enableBrowserWindowToolbar";
public static final String KEY_HIDE_TOOLBAR = "hideBrowserWindowToolbar";
@Override
public boolean observesAttribute(final ConfigurationAttribute attribute) {
return KEY_ENABLE_TOOLBAR.equals(attribute.name);
}
@Override
public void applyRule(
final ViewContext context,
final ConfigurationAttribute attribut,
final ConfigurationValue value) {
if (BooleanUtils.toBoolean(value.value)) {
context.enable(KEY_HIDE_TOOLBAR);
} else {
context.disable(KEY_HIDE_TOOLBAR);
}
}
}

View file

@ -46,16 +46,7 @@ public interface I18nSupport {
* @param key LocTextKey instance
* @return the text in current language parsed from localized text */
default String getText(final LocTextKey key) {
return getText(key.name, key.args);
}
/** Get localized text of specified key for currently set Locale.
*
* @param key LocTextKey instance
* @param def default text that is returned if no localized test with specified key was found
* @return the text in current language parsed from localized text */
default String getText(final LocTextKey key, final String def) {
return getText(key.name, def, key.args);
return getText(key.name, "missing:" + key.name, key.args);
}
/** Get localized text of specified key for currently set Locale.

View file

@ -300,6 +300,7 @@ public class PageContextImpl implements PageContext {
@Override
public <T> T notifyError(final Throwable error) {
log.error("Unexpected error: ", error);
notifyError(error.getMessage(), error);
return null;
}

View file

@ -28,7 +28,7 @@ import ch.ethz.seb.sebserver.gbl.util.Tuple;
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory.ImageIcon;
public class ColorSelection extends Composite implements Selection {
public final class ColorSelection extends Composite implements Selection {
private static final long serialVersionUID = 4775375044147842526L;
private static final Logger log = LoggerFactory.getLogger(ColorSelection.class);

View file

@ -36,7 +36,7 @@ import org.slf4j.LoggerFactory;
import ch.ethz.seb.sebserver.gui.service.push.ServerPushContext;
import ch.ethz.seb.sebserver.gui.service.push.ServerPushService;
public class ImageUpload extends Composite {
public final class ImageUpload extends Composite {
private static final long serialVersionUID = 368264811155804533L;

View file

@ -14,7 +14,7 @@ import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.MessageBox;
import org.eclipse.swt.widgets.Shell;
public class Message extends MessageBox {
public final class Message extends MessageBox {
private static final long serialVersionUID = 6973272221493264432L;

View file

@ -27,10 +27,9 @@ import ch.ethz.seb.sebserver.gbl.util.Tuple;
import ch.ethz.seb.sebserver.gui.service.page.impl.PageUtils;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory.CustomVariant;
public class MultiSelection extends Composite implements Selection {
public final class MultiSelection extends Composite implements Selection {
private static final long serialVersionUID = 2730206903047681378L;
private static final String OPTION_VALUE = "OPTION_VALUE";
private final List<Label> labels = new ArrayList<>();
private final List<Label> selected = new ArrayList<>();
@ -63,6 +62,7 @@ public class MultiSelection extends Composite implements Selection {
this.selected.clear();
this.labels.clear();
PageUtils.clearComposite(this);
for (final Tuple<String> tuple : mapping) {
final Label label = new Label(this, SWT.NONE);
final GridData gridData = new GridData(SWT.FILL, SWT.CENTER, true, true);

View file

@ -0,0 +1,133 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.widget;
import java.util.Arrays;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Listener;
import ch.ethz.seb.sebserver.gbl.Constants;
import ch.ethz.seb.sebserver.gbl.util.Tuple;
import ch.ethz.seb.sebserver.gui.service.page.impl.PageUtils;
public final class MultiSelectionCheckbox extends Composite implements Selection {
private static final long serialVersionUID = -8507565817745610126L;
private Listener listener = null;
private final Map<String, Button> checkboxes;
MultiSelectionCheckbox(final Composite parent) {
super(parent, SWT.NONE);
final GridLayout gridLayout = new GridLayout(1, true);
gridLayout.verticalSpacing = 1;
gridLayout.marginLeft = 0;
gridLayout.marginHeight = 0;
gridLayout.marginWidth = 0;
setLayout(gridLayout);
this.checkboxes = new LinkedHashMap<>();
}
@Override
public Type type() {
return Type.MULTI_CHECKBOX;
}
@Override
public void applyNewMapping(final List<Tuple<String>> mapping) {
final String selectionValue = getSelectionValue();
this.checkboxes.clear();
PageUtils.clearComposite(this);
for (final Tuple<String> tuple : mapping) {
final Button button = new Button(this, SWT.CHECK);
button.setText(tuple._2);
final GridData gridData = new GridData(SWT.FILL, SWT.CENTER, true, true);
button.setLayoutData(gridData);
button.setData(OPTION_VALUE, tuple._1);
button.addListener(SWT.Selection, event -> {
if (this.listener != null) {
this.listener.handleEvent(event);
}
});
this.checkboxes.put(tuple._1, button);
}
if (StringUtils.isNoneBlank(selectionValue)) {
select(selectionValue);
}
}
@Override
public void applyToolTipsForItems(final List<Tuple<String>> mapping) {
mapping
.stream()
.filter(tuple -> StringUtils.isNoneBlank(tuple._2))
.forEach(tuple -> {
final Button button = this.checkboxes.get(tuple._1);
if (button != null) {
button.setToolTipText(tuple._2);
}
});
}
@Override
public void select(final String keys) {
clear();
if (StringUtils.isBlank(keys)) {
return;
}
Arrays.asList(StringUtils.split(keys, Constants.LIST_SEPARATOR))
.stream()
.forEach(key -> {
final Button button = this.checkboxes.get(key);
if (button != null) {
button.setSelection(true);
}
});
}
@Override
public String getSelectionValue() {
return StringUtils.joinWith(
Constants.LIST_SEPARATOR,
this.checkboxes
.values()
.stream()
.filter(button -> button.getSelection())
.map(button -> (String) button.getData(OPTION_VALUE))
.collect(Collectors.toList()).toArray());
}
@Override
public void clear() {
this.checkboxes
.values()
.stream()
.forEach(button -> button.setSelection(false));
}
@Override
public void setSelectionListener(final Listener listener) {
this.listener = listener;
}
}

View file

@ -35,12 +35,11 @@ import ch.ethz.seb.sebserver.gbl.util.Tuple;
import ch.ethz.seb.sebserver.gui.service.i18n.LocTextKey;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory.ImageIcon;
public class MultiSelectionCombo extends Composite implements Selection {
public final class MultiSelectionCombo extends Composite implements Selection {
private static final Logger log = LoggerFactory.getLogger(MultiSelectionCombo.class);
private static final long serialVersionUID = -7787134114963647332L;
private static final int ACTION_COLUMN_WIDTH = 20;
private static final String SELECTION_KEY = "SELECTION_KEY";
private final WidgetFactory widgetFactory;
private final Combo combo;
@ -179,7 +178,7 @@ public class MultiSelectionCombo extends Composite implements Selection {
this,
new LocTextKey("Remove"),
this::removeComboSelection);
imageButton.setData(SELECTION_KEY, itemName);
imageButton.setData(OPTION_VALUE, itemName);
final GridData actionCell = new GridData(SWT.LEFT, SWT.CENTER, true, false);
actionCell.widthHint = ACTION_COLUMN_WIDTH;
imageButton.setLayoutData(actionCell);
@ -195,9 +194,9 @@ public class MultiSelectionCombo extends Composite implements Selection {
return;
}
final String selectionKey = (String) event.widget.getData(SELECTION_KEY);
final String selectionKey = (String) event.widget.getData(OPTION_VALUE);
final Optional<Tuple<Control>> findFirst = this.selectionControls.stream()
.filter(t -> selectionKey.equals(t._2.getData(SELECTION_KEY)))
.filter(t -> selectionKey.equals(t._2.getData(OPTION_VALUE)))
.findFirst();
if (!findFirst.isPresent()) {
return;

View file

@ -0,0 +1,121 @@
/*
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package ch.ethz.seb.sebserver.gui.widget;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Listener;
import ch.ethz.seb.sebserver.gbl.util.Tuple;
import ch.ethz.seb.sebserver.gui.service.page.impl.PageUtils;
public final class RadioSelection extends Composite implements Selection {
private static final long serialVersionUID = 7937242481193100852L;
private Listener listener = null;
private final Map<String, Button> radioButtons;
RadioSelection(final Composite parent) {
super(parent, SWT.NONE);
final GridLayout gridLayout = new GridLayout(1, true);
gridLayout.verticalSpacing = 1;
gridLayout.marginLeft = 0;
gridLayout.marginHeight = 0;
gridLayout.marginWidth = 0;
setLayout(gridLayout);
this.radioButtons = new LinkedHashMap<>();
}
@Override
public Type type() {
return Type.RADIO;
}
@Override
public void applyNewMapping(final List<Tuple<String>> mapping) {
final String selectionValue = getSelectionValue();
this.radioButtons.clear();
PageUtils.clearComposite(this);
for (final Tuple<String> tuple : mapping) {
final Button button = new Button(this, SWT.RADIO);
button.setText(tuple._2);
final GridData gridData = new GridData(SWT.FILL, SWT.CENTER, true, true);
button.setLayoutData(gridData);
button.setData(OPTION_VALUE, tuple._1);
button.addListener(SWT.Selection, event -> {
if (this.listener != null) {
this.listener.handleEvent(event);
}
});
this.radioButtons.put(tuple._1, button);
}
if (StringUtils.isNoneBlank(selectionValue)) {
select(selectionValue);
}
}
@Override
public void applyToolTipsForItems(final List<Tuple<String>> mapping) {
mapping
.stream()
.filter(tuple -> StringUtils.isNoneBlank(tuple._2))
.forEach(tuple -> {
final Button button = this.radioButtons.get(tuple._1);
if (button != null) {
button.setToolTipText(tuple._2);
}
});
}
@Override
public void select(final String key) {
clear();
if (StringUtils.isNotBlank(key) && this.radioButtons.containsKey(key)) {
this.radioButtons.get(key).setSelection(true);
}
}
@Override
public String getSelectionValue() {
return this.radioButtons
.values()
.stream()
.filter(button -> button.getSelection())
.findFirst()
.map(button -> (String) button.getData(OPTION_VALUE))
.orElse(null);
}
@Override
public void clear() {
this.radioButtons
.values()
.stream()
.forEach(button -> button.setSelection(false));
}
@Override
public void setSelectionListener(final Listener listener) {
this.listener = listener;
}
}

View file

@ -17,10 +17,15 @@ import ch.ethz.seb.sebserver.gbl.util.Tuple;
public interface Selection {
static final String OPTION_VALUE = "OPTION_VALUE";
enum Type {
SINGLE,
SINGLE_COMBO,
RADIO,
MULTI,
MULTI_COMBO,
MULTI_CHECKBOX,
COLOR,
}
@ -38,6 +43,12 @@ public interface Selection {
void setSelectionListener(Listener listener);
void setToolTipText(String tooltipText);
default void applyToolTipsForItems(final List<Tuple<String>> mapping) {
throw new UnsupportedOperationException("Must be implemented for this specific Selection");
}
default Control adaptToControl() {
return (Control) this;
}

View file

@ -19,17 +19,19 @@ import org.eclipse.swt.widgets.Listener;
import ch.ethz.seb.sebserver.gbl.util.Tuple;
public class SingleSelection extends Combo implements Selection {
public final class SingleSelection extends Combo implements Selection {
private static final long serialVersionUID = 6522063655406404279L;
final List<String> valueMapping;
final List<String> keyMapping;
final boolean isEditable;
SingleSelection(final Composite parent) {
super(parent, SWT.READ_ONLY);
SingleSelection(final Composite parent, final int type) {
super(parent, type);
this.valueMapping = new ArrayList<>();
this.keyMapping = new ArrayList<>();
this.isEditable = type == SWT.NONE;
}
@Override
@ -59,6 +61,10 @@ public class SingleSelection extends Combo implements Selection {
@Override
public String getSelectionValue() {
if (this.isEditable) {
return super.getText();
}
final int selectionindex = super.getSelectionIndex();
if (selectionindex < 0) {
return null;
@ -81,6 +87,10 @@ public class SingleSelection extends Combo implements Selection {
@Override
public void setSelectionListener(final Listener listener) {
super.addListener(SWT.Selection, listener);
if (this.isEditable) {
super.addListener(SWT.FocusOut, listener);
super.addListener(SWT.Traverse, listener);
}
}
}

View file

@ -30,7 +30,7 @@ import ch.ethz.seb.sebserver.gui.widget.Selection.Type;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory.CustomVariant;
import ch.ethz.seb.sebserver.gui.widget.WidgetFactory.ImageIcon;
public class ThresholdList extends Composite {
public final class ThresholdList extends Composite {
private static final Logger log = LoggerFactory.getLogger(ThresholdList.class);
private static final long serialVersionUID = -2305091471607040280L;

View file

@ -17,7 +17,6 @@ import java.util.Locale;
import java.util.function.Consumer;
import java.util.function.Supplier;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.rap.rwt.RWT;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Device;
@ -27,6 +26,7 @@ import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.TabFolder;
@ -207,6 +207,17 @@ public class WidgetFactory {
return button;
}
public Button buttonLocalized(
final Composite parent,
final int type,
final LocTextKey locTextKey,
final LocTextKey toolTipKey) {
final Button button = new Button(parent, type);
this.injectI18n(button, locTextKey, toolTipKey);
return button;
}
public Label label(final Composite parent, final String text) {
final Label label = new Label(parent, SWT.NONE);
label.setText(text);
@ -225,23 +236,6 @@ public class WidgetFactory {
return label;
}
public Label labelLocalized(
final Composite parent,
final LocTextKey locTextKey,
final String defaultValue) {
final Label label = new Label(parent, SWT.NONE);
final String text = this.i18nSupport.getText(locTextKey, "");
if (StringUtils.isNoneBlank(text)) {
this.injectI18n(label, locTextKey);
} else {
this.injectI18n(label, new LocTextKey(defaultValue));
}
return label;
}
public Label labelLocalized(final Composite parent, final CustomVariant variant, final LocTextKey locTextKey) {
final Label label = new Label(parent, SWT.NONE);
this.injectI18n(label, locTextKey);
@ -310,6 +304,22 @@ public class WidgetFactory {
return numberInput;
}
public Group groupLocalized(
final Composite parent,
final int columns,
final LocTextKey locTextKey) {
final Group group = new Group(parent, SWT.NONE);
final GridLayout gridLayout = new GridLayout(columns, true);
gridLayout.verticalSpacing = 0;
gridLayout.horizontalSpacing = 0;
gridLayout.marginHeight = 0;
group.setLayout(gridLayout);
this.injectI18n(group, locTextKey);
return group;
}
public Tree treeLocalized(final Composite parent, final int style) {
final Tree tree = new Tree(parent, style);
this.injectI18n(tree);
@ -362,6 +372,13 @@ public class WidgetFactory {
return tabs;
}
public TabItem tabItemLocalized(
final TabFolder parent,
final LocTextKey locTextKey) {
return this.tabItemLocalized(parent, locTextKey, null);
}
public TabItem tabItemLocalized(
final TabFolder parent,
final LocTextKey locTextKey,
@ -399,10 +416,35 @@ public class WidgetFactory {
final Composite parent,
final Supplier<List<Tuple<String>>> itemsSupplier) {
return this.selectionLocalized(type, parent, itemsSupplier, null, null);
}
public Selection selectionLocalized(
final Selection.Type type,
final Composite parent,
final Supplier<List<Tuple<String>>> itemsSupplier,
final LocTextKey toolTipTextKey) {
return this.selectionLocalized(type, parent, itemsSupplier, toolTipTextKey, null);
}
public Selection selectionLocalized(
final Selection.Type type,
final Composite parent,
final Supplier<List<Tuple<String>>> itemsSupplier,
final LocTextKey toolTipTextKey,
final Supplier<List<Tuple<String>>> itemsToolTipSupplier) {
final Selection selection;
switch (type) {
case SINGLE:
selection = new SingleSelection(parent);
selection = new SingleSelection(parent, SWT.READ_ONLY);
break;
case SINGLE_COMBO:
selection = new SingleSelection(parent, SWT.NONE);
break;
case RADIO:
selection = new RadioSelection(parent);
break;
case MULTI:
selection = new MultiSelection(parent);
@ -410,6 +452,9 @@ public class WidgetFactory {
case MULTI_COMBO:
selection = new MultiSelectionCombo(parent, this);
break;
case MULTI_CHECKBOX:
selection = new MultiSelectionCheckbox(parent);
break;
case COLOR:
selection = new ColorSelection(parent, this);
break;
@ -418,10 +463,23 @@ public class WidgetFactory {
}
if (itemsSupplier != null) {
final Consumer<Selection> updateFunction = ss -> ss.applyNewMapping(itemsSupplier.get());
final Consumer<Selection> updateFunction = ss -> {
try {
ss.applyNewMapping(itemsSupplier.get());
if (toolTipTextKey != null) {
ss.setToolTipText(this.i18nSupport.getText(toolTipTextKey));
}
if (itemsToolTipSupplier != null) {
ss.applyToolTipsForItems(itemsToolTipSupplier.get());
}
} catch (final Exception e) {
log.error("Unexpected error while trying to apply localization to selection widget", e);
}
};
selection.adaptToControl().setData(POLYGLOT_WIDGET_FUNCTION_KEY, updateFunction);
updateFunction.accept(selection);
}
return selection;
}
@ -463,6 +521,12 @@ public class WidgetFactory {
labelFunction.accept(label);
}
public void injectI18n(final Group group, final LocTextKey locTextKey) {
final Consumer<Group> groupFunction = groupFunction(locTextKey, null, this.i18nSupport);
group.setData(POLYGLOT_WIDGET_FUNCTION_KEY, groupFunction);
groupFunction.accept(group);
}
public void injectI18n(final Button button, final LocTextKey locTextKey) {
injectI18n(button, locTextKey, null);
}
@ -582,6 +646,21 @@ public class WidgetFactory {
};
}
private static final Consumer<Group> groupFunction(
final LocTextKey locTextKey,
final LocTextKey locToolTipKey,
final I18nSupport i18nSupport) {
return group -> {
if (locTextKey != null) {
group.setText(i18nSupport.getText(locTextKey));
}
if (locToolTipKey != null) {
group.setToolTipText(i18nSupport.getText(locToolTipKey));
}
};
}
private static final void updateLocale(final TabItem[] items, final I18nSupport i18nSupport) {
if (items == null) {
return;

View file

@ -6,25 +6,25 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class AdditionalAttributesDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source Table: additional_attributes")
public static final AdditionalAttributes additionalAttributes = new AdditionalAttributes();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source field: additional_attributes.id")
public static final SqlColumn<Long> id = additionalAttributes.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.entity_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source field: additional_attributes.entity_type")
public static final SqlColumn<String> entityType = additionalAttributes.entityType;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source field: additional_attributes.entity_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source field: additional_attributes.entity_id")
public static final SqlColumn<Long> entityId = additionalAttributes.entityId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source field: additional_attributes.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source field: additional_attributes.name")
public static final SqlColumn<String> name = additionalAttributes.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source field: additional_attributes.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source field: additional_attributes.value")
public static final SqlColumn<String> value = additionalAttributes.value;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source Table: additional_attributes")
public static final class AdditionalAttributes extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface AdditionalAttributesMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<AdditionalAttributes> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -56,7 +56,7 @@ public interface AdditionalAttributesMapper {
})
AdditionalAttributes selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -67,22 +67,22 @@ public interface AdditionalAttributesMapper {
})
List<AdditionalAttributes> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(additionalAttributes);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, additionalAttributes);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, additionalAttributes)
.where(id, isEqualTo(id_))
@ -90,7 +90,7 @@ public interface AdditionalAttributesMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default int insert(AdditionalAttributes record) {
return insert(SqlBuilder.insert(record)
.into(additionalAttributes)
@ -102,7 +102,7 @@ public interface AdditionalAttributesMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default int insertSelective(AdditionalAttributes record) {
return insert(SqlBuilder.insert(record)
.into(additionalAttributes)
@ -114,19 +114,19 @@ public interface AdditionalAttributesMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<AdditionalAttributes>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, entityType, entityId, name, value)
.from(additionalAttributes);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<AdditionalAttributes>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, entityType, entityId, name, value)
.from(additionalAttributes);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default AdditionalAttributes selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, entityType, entityId, name, value)
.from(additionalAttributes)
@ -135,7 +135,7 @@ public interface AdditionalAttributesMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(AdditionalAttributes record) {
return UpdateDSL.updateWithMapper(this::update, additionalAttributes)
.set(entityType).equalTo(record::getEntityType)
@ -144,7 +144,7 @@ public interface AdditionalAttributesMapper {
.set(value).equalTo(record::getValue);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(AdditionalAttributes record) {
return UpdateDSL.updateWithMapper(this::update, additionalAttributes)
.set(entityType).equalToWhenPresent(record::getEntityType)
@ -153,7 +153,7 @@ public interface AdditionalAttributesMapper {
.set(value).equalToWhenPresent(record::getValue);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default int updateByPrimaryKey(AdditionalAttributes record) {
return UpdateDSL.updateWithMapper(this::update, additionalAttributes)
.set(entityType).equalTo(record::getEntityType)
@ -165,7 +165,7 @@ public interface AdditionalAttributesMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.179+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.182+02:00", comments="Source Table: additional_attributes")
default int updateByPrimaryKeySelective(AdditionalAttributes record) {
return UpdateDSL.updateWithMapper(this::update, additionalAttributes)
.set(entityType).equalToWhenPresent(record::getEntityType)

View file

@ -6,34 +6,34 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ClientConnectionRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.122+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source Table: client_connection")
public static final ClientConnectionRecord clientConnectionRecord = new ClientConnectionRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.123+02:00", comments="Source field: client_connection.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.id")
public static final SqlColumn<Long> id = clientConnectionRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.123+02:00", comments="Source field: client_connection.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.151+02:00", comments="Source field: client_connection.exam_id")
public static final SqlColumn<Long> examId = clientConnectionRecord.examId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.124+02:00", comments="Source field: client_connection.status")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.151+02:00", comments="Source field: client_connection.status")
public static final SqlColumn<String> status = clientConnectionRecord.status;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.124+02:00", comments="Source field: client_connection.connection_token")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.151+02:00", comments="Source field: client_connection.connection_token")
public static final SqlColumn<String> connectionToken = clientConnectionRecord.connectionToken;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.124+02:00", comments="Source field: client_connection.user_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.151+02:00", comments="Source field: client_connection.user_name")
public static final SqlColumn<String> userName = clientConnectionRecord.userName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.124+02:00", comments="Source field: client_connection.vdi")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.151+02:00", comments="Source field: client_connection.vdi")
public static final SqlColumn<Boolean> vdi = clientConnectionRecord.vdi;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.124+02:00", comments="Source field: client_connection.client_address")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.151+02:00", comments="Source field: client_connection.client_address")
public static final SqlColumn<String> clientAddress = clientConnectionRecord.clientAddress;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source field: client_connection.virtual_client_address")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.151+02:00", comments="Source field: client_connection.virtual_client_address")
public static final SqlColumn<String> virtualClientAddress = clientConnectionRecord.virtualClientAddress;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.123+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source Table: client_connection")
public static final class ClientConnectionRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ClientConnectionRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ClientConnectionRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -59,7 +59,7 @@ public interface ClientConnectionRecordMapper {
})
ClientConnectionRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -73,22 +73,22 @@ public interface ClientConnectionRecordMapper {
})
List<ClientConnectionRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(clientConnectionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, clientConnectionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, clientConnectionRecord)
.where(id, isEqualTo(id_))
@ -96,7 +96,7 @@ public interface ClientConnectionRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default int insert(ClientConnectionRecord record) {
return insert(SqlBuilder.insert(record)
.into(clientConnectionRecord)
@ -111,7 +111,7 @@ public interface ClientConnectionRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.125+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default int insertSelective(ClientConnectionRecord record) {
return insert(SqlBuilder.insert(record)
.into(clientConnectionRecord)
@ -126,19 +126,19 @@ public interface ClientConnectionRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.126+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ClientConnectionRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, examId, status, connectionToken, userName, vdi, clientAddress, virtualClientAddress)
.from(clientConnectionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.126+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ClientConnectionRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, examId, status, connectionToken, userName, vdi, clientAddress, virtualClientAddress)
.from(clientConnectionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.126+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default ClientConnectionRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, examId, status, connectionToken, userName, vdi, clientAddress, virtualClientAddress)
.from(clientConnectionRecord)
@ -147,7 +147,7 @@ public interface ClientConnectionRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.126+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ClientConnectionRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientConnectionRecord)
.set(examId).equalTo(record::getExamId)
@ -159,7 +159,7 @@ public interface ClientConnectionRecordMapper {
.set(virtualClientAddress).equalTo(record::getVirtualClientAddress);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.126+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.152+02:00", comments="Source Table: client_connection")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ClientConnectionRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientConnectionRecord)
.set(examId).equalToWhenPresent(record::getExamId)
@ -171,7 +171,7 @@ public interface ClientConnectionRecordMapper {
.set(virtualClientAddress).equalToWhenPresent(record::getVirtualClientAddress);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.126+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source Table: client_connection")
default int updateByPrimaryKey(ClientConnectionRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientConnectionRecord)
.set(examId).equalTo(record::getExamId)
@ -186,7 +186,7 @@ public interface ClientConnectionRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.126+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source Table: client_connection")
default int updateByPrimaryKeySelective(ClientConnectionRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientConnectionRecord)
.set(examId).equalToWhenPresent(record::getExamId)

View file

@ -7,31 +7,31 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ClientEventRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source Table: client_event")
public static final ClientEventRecord clientEventRecord = new ClientEventRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source field: client_event.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source field: client_event.id")
public static final SqlColumn<Long> id = clientEventRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source field: client_event.connection_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source field: client_event.connection_id")
public static final SqlColumn<Long> connectionId = clientEventRecord.connectionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source field: client_event.user_identifier")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source field: client_event.user_identifier")
public static final SqlColumn<String> userIdentifier = clientEventRecord.userIdentifier;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source field: client_event.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source field: client_event.type")
public static final SqlColumn<Integer> type = clientEventRecord.type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source field: client_event.timestamp")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source field: client_event.timestamp")
public static final SqlColumn<Long> timestamp = clientEventRecord.timestamp;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source field: client_event.numeric_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source field: client_event.numeric_value")
public static final SqlColumn<BigDecimal> numericValue = clientEventRecord.numericValue;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source field: client_event.text")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source field: client_event.text")
public static final SqlColumn<String> text = clientEventRecord.text;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.129+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source Table: client_event")
public static final class ClientEventRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -33,20 +33,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ClientEventRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source Table: client_event")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source Table: client_event")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.155+02:00", comments="Source Table: client_event")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ClientEventRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -59,7 +59,7 @@ public interface ClientEventRecordMapper {
})
ClientEventRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -72,22 +72,22 @@ public interface ClientEventRecordMapper {
})
List<ClientEventRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(clientEventRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, clientEventRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, clientEventRecord)
.where(id, isEqualTo(id_))
@ -95,7 +95,7 @@ public interface ClientEventRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default int insert(ClientEventRecord record) {
return insert(SqlBuilder.insert(record)
.into(clientEventRecord)
@ -109,7 +109,7 @@ public interface ClientEventRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default int insertSelective(ClientEventRecord record) {
return insert(SqlBuilder.insert(record)
.into(clientEventRecord)
@ -123,19 +123,19 @@ public interface ClientEventRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ClientEventRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, connectionId, userIdentifier, type, timestamp, numericValue, text)
.from(clientEventRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ClientEventRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, connectionId, userIdentifier, type, timestamp, numericValue, text)
.from(clientEventRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.130+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default ClientEventRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, connectionId, userIdentifier, type, timestamp, numericValue, text)
.from(clientEventRecord)
@ -144,7 +144,7 @@ public interface ClientEventRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ClientEventRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientEventRecord)
.set(connectionId).equalTo(record::getConnectionId)
@ -155,7 +155,7 @@ public interface ClientEventRecordMapper {
.set(text).equalTo(record::getText);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ClientEventRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientEventRecord)
.set(connectionId).equalToWhenPresent(record::getConnectionId)
@ -166,7 +166,7 @@ public interface ClientEventRecordMapper {
.set(text).equalToWhenPresent(record::getText);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default int updateByPrimaryKey(ClientEventRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientEventRecord)
.set(connectionId).equalTo(record::getConnectionId)
@ -180,7 +180,7 @@ public interface ClientEventRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.156+02:00", comments="Source Table: client_event")
default int updateByPrimaryKeySelective(ClientEventRecord record) {
return UpdateDSL.updateWithMapper(this::update, clientEventRecord)
.set(connectionId).equalToWhenPresent(record::getConnectionId)

View file

@ -6,34 +6,34 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ConfigurationAttributeRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.858+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.981+02:00", comments="Source Table: configuration_attribute")
public static final ConfigurationAttributeRecord configurationAttributeRecord = new ConfigurationAttributeRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.861+02:00", comments="Source field: configuration_attribute.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.984+02:00", comments="Source field: configuration_attribute.id")
public static final SqlColumn<Long> id = configurationAttributeRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.862+02:00", comments="Source field: configuration_attribute.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.986+02:00", comments="Source field: configuration_attribute.name")
public static final SqlColumn<String> name = configurationAttributeRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.863+02:00", comments="Source field: configuration_attribute.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.986+02:00", comments="Source field: configuration_attribute.type")
public static final SqlColumn<String> type = configurationAttributeRecord.type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.863+02:00", comments="Source field: configuration_attribute.parent_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.986+02:00", comments="Source field: configuration_attribute.parent_id")
public static final SqlColumn<Long> parentId = configurationAttributeRecord.parentId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.863+02:00", comments="Source field: configuration_attribute.resources")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.986+02:00", comments="Source field: configuration_attribute.resources")
public static final SqlColumn<String> resources = configurationAttributeRecord.resources;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.864+02:00", comments="Source field: configuration_attribute.validator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.987+02:00", comments="Source field: configuration_attribute.validator")
public static final SqlColumn<String> validator = configurationAttributeRecord.validator;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.864+02:00", comments="Source field: configuration_attribute.dependencies")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.988+02:00", comments="Source field: configuration_attribute.dependencies")
public static final SqlColumn<String> dependencies = configurationAttributeRecord.dependencies;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.864+02:00", comments="Source field: configuration_attribute.default_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.988+02:00", comments="Source field: configuration_attribute.default_value")
public static final SqlColumn<String> defaultValue = configurationAttributeRecord.defaultValue;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.861+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.984+02:00", comments="Source Table: configuration_attribute")
public static final class ConfigurationAttributeRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ConfigurationAttributeRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.866+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.990+02:00", comments="Source Table: configuration_attribute")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.867+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.991+02:00", comments="Source Table: configuration_attribute")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.868+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.992+02:00", comments="Source Table: configuration_attribute")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ConfigurationAttributeRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.870+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.993+02:00", comments="Source Table: configuration_attribute")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -59,7 +59,7 @@ public interface ConfigurationAttributeRecordMapper {
})
ConfigurationAttributeRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.871+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.994+02:00", comments="Source Table: configuration_attribute")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -73,22 +73,22 @@ public interface ConfigurationAttributeRecordMapper {
})
List<ConfigurationAttributeRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.873+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.995+02:00", comments="Source Table: configuration_attribute")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.874+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.995+02:00", comments="Source Table: configuration_attribute")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(configurationAttributeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.875+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.996+02:00", comments="Source Table: configuration_attribute")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationAttributeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.876+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.997+02:00", comments="Source Table: configuration_attribute")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationAttributeRecord)
.where(id, isEqualTo(id_))
@ -96,7 +96,7 @@ public interface ConfigurationAttributeRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.877+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.997+02:00", comments="Source Table: configuration_attribute")
default int insert(ConfigurationAttributeRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationAttributeRecord)
@ -111,7 +111,7 @@ public interface ConfigurationAttributeRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.879+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.999+02:00", comments="Source Table: configuration_attribute")
default int insertSelective(ConfigurationAttributeRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationAttributeRecord)
@ -126,19 +126,19 @@ public interface ConfigurationAttributeRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.880+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.999+02:00", comments="Source Table: configuration_attribute")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationAttributeRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, name, type, parentId, resources, validator, dependencies, defaultValue)
.from(configurationAttributeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.881+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57+02:00", comments="Source Table: configuration_attribute")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationAttributeRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, name, type, parentId, resources, validator, dependencies, defaultValue)
.from(configurationAttributeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.882+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.001+02:00", comments="Source Table: configuration_attribute")
default ConfigurationAttributeRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, name, type, parentId, resources, validator, dependencies, defaultValue)
.from(configurationAttributeRecord)
@ -147,7 +147,7 @@ public interface ConfigurationAttributeRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.883+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.002+02:00", comments="Source Table: configuration_attribute")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ConfigurationAttributeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationAttributeRecord)
.set(name).equalTo(record::getName)
@ -159,7 +159,7 @@ public interface ConfigurationAttributeRecordMapper {
.set(defaultValue).equalTo(record::getDefaultValue);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.884+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.003+02:00", comments="Source Table: configuration_attribute")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ConfigurationAttributeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationAttributeRecord)
.set(name).equalToWhenPresent(record::getName)
@ -171,7 +171,7 @@ public interface ConfigurationAttributeRecordMapper {
.set(defaultValue).equalToWhenPresent(record::getDefaultValue);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.885+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.003+02:00", comments="Source Table: configuration_attribute")
default int updateByPrimaryKey(ConfigurationAttributeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationAttributeRecord)
.set(name).equalTo(record::getName)
@ -186,7 +186,7 @@ public interface ConfigurationAttributeRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.887+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.004+02:00", comments="Source Table: configuration_attribute")
default int updateByPrimaryKeySelective(ConfigurationAttributeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationAttributeRecord)
.set(name).equalToWhenPresent(record::getName)

View file

@ -6,34 +6,34 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ConfigurationNodeRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source Table: configuration_node")
public static final ConfigurationNodeRecord configurationNodeRecord = new ConfigurationNodeRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source field: configuration_node.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source field: configuration_node.id")
public static final SqlColumn<Long> id = configurationNodeRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source field: configuration_node.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source field: configuration_node.institution_id")
public static final SqlColumn<Long> institutionId = configurationNodeRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source field: configuration_node.template_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source field: configuration_node.template_id")
public static final SqlColumn<Long> templateId = configurationNodeRecord.templateId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source field: configuration_node.owner")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source field: configuration_node.owner")
public static final SqlColumn<String> owner = configurationNodeRecord.owner;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source field: configuration_node.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source field: configuration_node.name")
public static final SqlColumn<String> name = configurationNodeRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source field: configuration_node.description")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source field: configuration_node.description")
public static final SqlColumn<String> description = configurationNodeRecord.description;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.106+02:00", comments="Source field: configuration_node.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source field: configuration_node.type")
public static final SqlColumn<String> type = configurationNodeRecord.type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.106+02:00", comments="Source field: configuration_node.status")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source field: configuration_node.status")
public static final SqlColumn<String> status = configurationNodeRecord.status;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source Table: configuration_node")
public static final class ConfigurationNodeRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ConfigurationNodeRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.107+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source Table: configuration_node")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.107+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source Table: configuration_node")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.107+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source Table: configuration_node")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ConfigurationNodeRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.108+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source Table: configuration_node")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -59,7 +59,7 @@ public interface ConfigurationNodeRecordMapper {
})
ConfigurationNodeRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.108+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source Table: configuration_node")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -73,22 +73,22 @@ public interface ConfigurationNodeRecordMapper {
})
List<ConfigurationNodeRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.108+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source Table: configuration_node")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.108+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.137+02:00", comments="Source Table: configuration_node")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(configurationNodeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.108+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationNodeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.108+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationNodeRecord)
.where(id, isEqualTo(id_))
@ -96,7 +96,7 @@ public interface ConfigurationNodeRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default int insert(ConfigurationNodeRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationNodeRecord)
@ -111,7 +111,7 @@ public interface ConfigurationNodeRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default int insertSelective(ConfigurationNodeRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationNodeRecord)
@ -126,19 +126,19 @@ public interface ConfigurationNodeRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationNodeRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, templateId, owner, name, description, type, status)
.from(configurationNodeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationNodeRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, templateId, owner, name, description, type, status)
.from(configurationNodeRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default ConfigurationNodeRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, templateId, owner, name, description, type, status)
.from(configurationNodeRecord)
@ -147,7 +147,7 @@ public interface ConfigurationNodeRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.138+02:00", comments="Source Table: configuration_node")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ConfigurationNodeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationNodeRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -159,7 +159,7 @@ public interface ConfigurationNodeRecordMapper {
.set(status).equalTo(record::getStatus);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.139+02:00", comments="Source Table: configuration_node")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ConfigurationNodeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationNodeRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -171,7 +171,7 @@ public interface ConfigurationNodeRecordMapper {
.set(status).equalToWhenPresent(record::getStatus);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.139+02:00", comments="Source Table: configuration_node")
default int updateByPrimaryKey(ConfigurationNodeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationNodeRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -186,7 +186,7 @@ public interface ConfigurationNodeRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.109+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.139+02:00", comments="Source Table: configuration_node")
default int updateByPrimaryKeySelective(ConfigurationNodeRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationNodeRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -7,28 +7,28 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ConfigurationRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source Table: configuration")
public static final ConfigurationRecord configurationRecord = new ConfigurationRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source field: configuration.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source field: configuration.id")
public static final SqlColumn<Long> id = configurationRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source field: configuration.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source field: configuration.institution_id")
public static final SqlColumn<Long> institutionId = configurationRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source field: configuration.configuration_node_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source field: configuration.configuration_node_id")
public static final SqlColumn<Long> configurationNodeId = configurationRecord.configurationNodeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source field: configuration.version")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source field: configuration.version")
public static final SqlColumn<String> version = configurationRecord.version;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source field: configuration.version_date")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source field: configuration.version_date")
public static final SqlColumn<DateTime> versionDate = configurationRecord.versionDate;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source field: configuration.followup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source field: configuration.followup")
public static final SqlColumn<Integer> followup = configurationRecord.followup;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.101+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source Table: configuration")
public static final class ConfigurationRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -34,20 +34,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ConfigurationRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source Table: configuration")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source Table: configuration")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source Table: configuration")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ConfigurationRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.133+02:00", comments="Source Table: configuration")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -59,7 +59,7 @@ public interface ConfigurationRecordMapper {
})
ConfigurationRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -71,22 +71,22 @@ public interface ConfigurationRecordMapper {
})
List<ConfigurationRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(configurationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationRecord)
.where(id, isEqualTo(id_))
@ -94,7 +94,7 @@ public interface ConfigurationRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default int insert(ConfigurationRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationRecord)
@ -107,7 +107,7 @@ public interface ConfigurationRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default int insertSelective(ConfigurationRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationRecord)
@ -120,19 +120,19 @@ public interface ConfigurationRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, configurationNodeId, version, versionDate, followup)
.from(configurationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, configurationNodeId, version, versionDate, followup)
.from(configurationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.102+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default ConfigurationRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, configurationNodeId, version, versionDate, followup)
.from(configurationRecord)
@ -141,7 +141,7 @@ public interface ConfigurationRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ConfigurationRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -151,7 +151,7 @@ public interface ConfigurationRecordMapper {
.set(followup).equalTo(record::getFollowup);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ConfigurationRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -161,7 +161,7 @@ public interface ConfigurationRecordMapper {
.set(followup).equalToWhenPresent(record::getFollowup);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default int updateByPrimaryKey(ConfigurationRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -174,7 +174,7 @@ public interface ConfigurationRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.134+02:00", comments="Source Table: configuration")
default int updateByPrimaryKeySelective(ConfigurationRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -6,31 +6,31 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ConfigurationValueRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.075+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source Table: configuration_value")
public static final ConfigurationValueRecord configurationValueRecord = new ConfigurationValueRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.076+02:00", comments="Source field: configuration_value.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source field: configuration_value.id")
public static final SqlColumn<Long> id = configurationValueRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.076+02:00", comments="Source field: configuration_value.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source field: configuration_value.institution_id")
public static final SqlColumn<Long> institutionId = configurationValueRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.076+02:00", comments="Source field: configuration_value.configuration_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source field: configuration_value.configuration_id")
public static final SqlColumn<Long> configurationId = configurationValueRecord.configurationId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.076+02:00", comments="Source field: configuration_value.configuration_attribute_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source field: configuration_value.configuration_attribute_id")
public static final SqlColumn<Long> configurationAttributeId = configurationValueRecord.configurationAttributeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.076+02:00", comments="Source field: configuration_value.list_index")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source field: configuration_value.list_index")
public static final SqlColumn<Integer> listIndex = configurationValueRecord.listIndex;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.077+02:00", comments="Source field: configuration_value.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.121+02:00", comments="Source field: configuration_value.value")
public static final SqlColumn<String> value = configurationValueRecord.value;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.077+02:00", comments="Source field: configuration_value.text")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.121+02:00", comments="Source field: configuration_value.text")
public static final SqlColumn<String> text = configurationValueRecord.text;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.075+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source Table: configuration_value")
public static final class ConfigurationValueRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ConfigurationValueRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.077+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.121+02:00", comments="Source Table: configuration_value")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.077+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.121+02:00", comments="Source Table: configuration_value")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.077+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.121+02:00", comments="Source Table: configuration_value")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ConfigurationValueRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.077+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.121+02:00", comments="Source Table: configuration_value")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -58,7 +58,7 @@ public interface ConfigurationValueRecordMapper {
})
ConfigurationValueRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.080+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.122+02:00", comments="Source Table: configuration_value")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -71,22 +71,22 @@ public interface ConfigurationValueRecordMapper {
})
List<ConfigurationValueRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.081+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.122+02:00", comments="Source Table: configuration_value")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.081+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.122+02:00", comments="Source Table: configuration_value")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(configurationValueRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.081+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.122+02:00", comments="Source Table: configuration_value")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationValueRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.081+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.122+02:00", comments="Source Table: configuration_value")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, configurationValueRecord)
.where(id, isEqualTo(id_))
@ -94,7 +94,7 @@ public interface ConfigurationValueRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.081+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default int insert(ConfigurationValueRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationValueRecord)
@ -108,7 +108,7 @@ public interface ConfigurationValueRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.081+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default int insertSelective(ConfigurationValueRecord record) {
return insert(SqlBuilder.insert(record)
.into(configurationValueRecord)
@ -122,19 +122,19 @@ public interface ConfigurationValueRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.082+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationValueRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, configurationId, configurationAttributeId, listIndex, value, text)
.from(configurationValueRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.082+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ConfigurationValueRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, configurationId, configurationAttributeId, listIndex, value, text)
.from(configurationValueRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.082+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default ConfigurationValueRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, configurationId, configurationAttributeId, listIndex, value, text)
.from(configurationValueRecord)
@ -143,7 +143,7 @@ public interface ConfigurationValueRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.083+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ConfigurationValueRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationValueRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -154,7 +154,7 @@ public interface ConfigurationValueRecordMapper {
.set(text).equalTo(record::getText);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.083+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ConfigurationValueRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationValueRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -165,7 +165,7 @@ public interface ConfigurationValueRecordMapper {
.set(text).equalToWhenPresent(record::getText);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.083+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default int updateByPrimaryKey(ConfigurationValueRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationValueRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -179,7 +179,7 @@ public interface ConfigurationValueRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.083+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.123+02:00", comments="Source Table: configuration_value")
default int updateByPrimaryKeySelective(ConfigurationValueRecord record) {
return UpdateDSL.updateWithMapper(this::update, configurationValueRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -6,25 +6,25 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ExamConfigurationMapRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.112+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.142+02:00", comments="Source Table: exam_configuration_map")
public static final ExamConfigurationMapRecord examConfigurationMapRecord = new ExamConfigurationMapRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.112+02:00", comments="Source field: exam_configuration_map.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.142+02:00", comments="Source field: exam_configuration_map.id")
public static final SqlColumn<Long> id = examConfigurationMapRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.112+02:00", comments="Source field: exam_configuration_map.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source field: exam_configuration_map.institution_id")
public static final SqlColumn<Long> institutionId = examConfigurationMapRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source field: exam_configuration_map.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source field: exam_configuration_map.exam_id")
public static final SqlColumn<Long> examId = examConfigurationMapRecord.examId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source field: exam_configuration_map.configuration_node_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source field: exam_configuration_map.configuration_node_id")
public static final SqlColumn<Long> configurationNodeId = examConfigurationMapRecord.configurationNodeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source field: exam_configuration_map.user_names")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source field: exam_configuration_map.user_names")
public static final SqlColumn<String> userNames = examConfigurationMapRecord.userNames;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.112+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.142+02:00", comments="Source Table: exam_configuration_map")
public static final class ExamConfigurationMapRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ExamConfigurationMapRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source Table: exam_configuration_map")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source Table: exam_configuration_map")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source Table: exam_configuration_map")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ExamConfigurationMapRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source Table: exam_configuration_map")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -56,7 +56,7 @@ public interface ExamConfigurationMapRecordMapper {
})
ExamConfigurationMapRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source Table: exam_configuration_map")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -67,22 +67,22 @@ public interface ExamConfigurationMapRecordMapper {
})
List<ExamConfigurationMapRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.143+02:00", comments="Source Table: exam_configuration_map")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.113+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(examConfigurationMapRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, examConfigurationMapRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, examConfigurationMapRecord)
.where(id, isEqualTo(id_))
@ -90,7 +90,7 @@ public interface ExamConfigurationMapRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default int insert(ExamConfigurationMapRecord record) {
return insert(SqlBuilder.insert(record)
.into(examConfigurationMapRecord)
@ -102,7 +102,7 @@ public interface ExamConfigurationMapRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default int insertSelective(ExamConfigurationMapRecord record) {
return insert(SqlBuilder.insert(record)
.into(examConfigurationMapRecord)
@ -114,19 +114,19 @@ public interface ExamConfigurationMapRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ExamConfigurationMapRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, examId, configurationNodeId, userNames)
.from(examConfigurationMapRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ExamConfigurationMapRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, examId, configurationNodeId, userNames)
.from(examConfigurationMapRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default ExamConfigurationMapRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, examId, configurationNodeId, userNames)
.from(examConfigurationMapRecord)
@ -135,7 +135,7 @@ public interface ExamConfigurationMapRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ExamConfigurationMapRecord record) {
return UpdateDSL.updateWithMapper(this::update, examConfigurationMapRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -144,7 +144,7 @@ public interface ExamConfigurationMapRecordMapper {
.set(userNames).equalTo(record::getUserNames);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ExamConfigurationMapRecord record) {
return UpdateDSL.updateWithMapper(this::update, examConfigurationMapRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -153,7 +153,7 @@ public interface ExamConfigurationMapRecordMapper {
.set(userNames).equalToWhenPresent(record::getUserNames);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.114+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default int updateByPrimaryKey(ExamConfigurationMapRecord record) {
return UpdateDSL.updateWithMapper(this::update, examConfigurationMapRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -165,7 +165,7 @@ public interface ExamConfigurationMapRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.115+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.144+02:00", comments="Source Table: exam_configuration_map")
default int updateByPrimaryKeySelective(ExamConfigurationMapRecord record) {
return UpdateDSL.updateWithMapper(this::update, examConfigurationMapRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -6,37 +6,37 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ExamRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.117+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source Table: exam")
public static final ExamRecord examRecord = new ExamRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.117+02:00", comments="Source field: exam.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.id")
public static final SqlColumn<Long> id = examRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.117+02:00", comments="Source field: exam.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.institution_id")
public static final SqlColumn<Long> institutionId = examRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.117+02:00", comments="Source field: exam.lms_setup_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.lms_setup_id")
public static final SqlColumn<Long> lmsSetupId = examRecord.lmsSetupId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.117+02:00", comments="Source field: exam.external_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.external_id")
public static final SqlColumn<String> externalId = examRecord.externalId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source field: exam.owner")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.owner")
public static final SqlColumn<String> owner = examRecord.owner;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source field: exam.supporter")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.supporter")
public static final SqlColumn<String> supporter = examRecord.supporter;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source field: exam.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.type")
public static final SqlColumn<String> type = examRecord.type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source field: exam.quit_password")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.quit_password")
public static final SqlColumn<String> quitPassword = examRecord.quitPassword;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source field: exam.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source field: exam.active")
public static final SqlColumn<Integer> active = examRecord.active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.117+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source Table: exam")
public static final class ExamRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ExamRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source Table: exam")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.147+02:00", comments="Source Table: exam")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ExamRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -60,7 +60,7 @@ public interface ExamRecordMapper {
})
ExamRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -75,22 +75,22 @@ public interface ExamRecordMapper {
})
List<ExamRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.118+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(examRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, examRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, examRecord)
.where(id, isEqualTo(id_))
@ -98,7 +98,7 @@ public interface ExamRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default int insert(ExamRecord record) {
return insert(SqlBuilder.insert(record)
.into(examRecord)
@ -114,7 +114,7 @@ public interface ExamRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default int insertSelective(ExamRecord record) {
return insert(SqlBuilder.insert(record)
.into(examRecord)
@ -130,19 +130,19 @@ public interface ExamRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ExamRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, lmsSetupId, externalId, owner, supporter, type, quitPassword, active)
.from(examRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ExamRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, lmsSetupId, externalId, owner, supporter, type, quitPassword, active)
.from(examRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default ExamRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, lmsSetupId, externalId, owner, supporter, type, quitPassword, active)
.from(examRecord)
@ -151,7 +151,7 @@ public interface ExamRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.119+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ExamRecord record) {
return UpdateDSL.updateWithMapper(this::update, examRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -164,7 +164,7 @@ public interface ExamRecordMapper {
.set(active).equalTo(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.120+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ExamRecord record) {
return UpdateDSL.updateWithMapper(this::update, examRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -177,7 +177,7 @@ public interface ExamRecordMapper {
.set(active).equalToWhenPresent(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.120+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default int updateByPrimaryKey(ExamRecord record) {
return UpdateDSL.updateWithMapper(this::update, examRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -193,7 +193,7 @@ public interface ExamRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.120+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.148+02:00", comments="Source Table: exam")
default int updateByPrimaryKeySelective(ExamRecord record) {
return UpdateDSL.updateWithMapper(this::update, examRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -6,25 +6,25 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class IndicatorRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source Table: indicator")
public static final IndicatorRecord indicatorRecord = new IndicatorRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.id")
public static final SqlColumn<Long> id = indicatorRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.exam_id")
public static final SqlColumn<Long> examId = indicatorRecord.examId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.type")
public static final SqlColumn<String> type = indicatorRecord.type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source field: indicator.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.name")
public static final SqlColumn<String> name = indicatorRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source field: indicator.color")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.color")
public static final SqlColumn<String> color = indicatorRecord.color;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source Table: indicator")
public static final class IndicatorRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface IndicatorRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source Table: indicator")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source Table: indicator")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source Table: indicator")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<IndicatorRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -56,7 +56,7 @@ public interface IndicatorRecordMapper {
})
IndicatorRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -67,22 +67,22 @@ public interface IndicatorRecordMapper {
})
List<IndicatorRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(indicatorRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, indicatorRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, indicatorRecord)
.where(id, isEqualTo(id_))
@ -90,7 +90,7 @@ public interface IndicatorRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default int insert(IndicatorRecord record) {
return insert(SqlBuilder.insert(record)
.into(indicatorRecord)
@ -102,7 +102,7 @@ public interface IndicatorRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default int insertSelective(IndicatorRecord record) {
return insert(SqlBuilder.insert(record)
.into(indicatorRecord)
@ -114,19 +114,19 @@ public interface IndicatorRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.133+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<IndicatorRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, examId, type, name, color)
.from(indicatorRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<IndicatorRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, examId, type, name, color)
.from(indicatorRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default IndicatorRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, examId, type, name, color)
.from(indicatorRecord)
@ -135,7 +135,7 @@ public interface IndicatorRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(IndicatorRecord record) {
return UpdateDSL.updateWithMapper(this::update, indicatorRecord)
.set(examId).equalTo(record::getExamId)
@ -144,7 +144,7 @@ public interface IndicatorRecordMapper {
.set(color).equalTo(record::getColor);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(IndicatorRecord record) {
return UpdateDSL.updateWithMapper(this::update, indicatorRecord)
.set(examId).equalToWhenPresent(record::getExamId)
@ -153,7 +153,7 @@ public interface IndicatorRecordMapper {
.set(color).equalToWhenPresent(record::getColor);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default int updateByPrimaryKey(IndicatorRecord record) {
return UpdateDSL.updateWithMapper(this::update, indicatorRecord)
.set(examId).equalTo(record::getExamId)
@ -165,7 +165,7 @@ public interface IndicatorRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.159+02:00", comments="Source Table: indicator")
default int updateByPrimaryKeySelective(IndicatorRecord record) {
return UpdateDSL.updateWithMapper(this::update, indicatorRecord)
.set(examId).equalToWhenPresent(record::getExamId)

View file

@ -6,28 +6,28 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class InstitutionRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source Table: institution")
public static final InstitutionRecord institutionRecord = new InstitutionRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.id")
public static final SqlColumn<Long> id = institutionRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source field: institution.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.name")
public static final SqlColumn<String> name = institutionRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source field: institution.url_suffix")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.url_suffix")
public static final SqlColumn<String> urlSuffix = institutionRecord.urlSuffix;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source field: institution.theme_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source field: institution.theme_name")
public static final SqlColumn<String> themeName = institutionRecord.themeName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source field: institution.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source field: institution.active")
public static final SqlColumn<Integer> active = institutionRecord.active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source field: institution.logo_image")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source field: institution.logo_image")
public static final SqlColumn<String> logoImage = institutionRecord.logoImage;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source Table: institution")
public static final class InstitutionRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface InstitutionRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<InstitutionRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.148+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -57,7 +57,7 @@ public interface InstitutionRecordMapper {
})
InstitutionRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -69,22 +69,22 @@ public interface InstitutionRecordMapper {
})
List<InstitutionRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(institutionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, institutionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, institutionRecord)
.where(id, isEqualTo(id_))
@ -92,7 +92,7 @@ public interface InstitutionRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
default int insert(InstitutionRecord record) {
return insert(SqlBuilder.insert(record)
.into(institutionRecord)
@ -105,7 +105,7 @@ public interface InstitutionRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
default int insertSelective(InstitutionRecord record) {
return insert(SqlBuilder.insert(record)
.into(institutionRecord)
@ -118,19 +118,19 @@ public interface InstitutionRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.149+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.165+02:00", comments="Source Table: institution")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<InstitutionRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, name, urlSuffix, themeName, active, logoImage)
.from(institutionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.150+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source Table: institution")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<InstitutionRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, name, urlSuffix, themeName, active, logoImage)
.from(institutionRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.150+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source Table: institution")
default InstitutionRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, name, urlSuffix, themeName, active, logoImage)
.from(institutionRecord)
@ -139,7 +139,7 @@ public interface InstitutionRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.150+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source Table: institution")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(InstitutionRecord record) {
return UpdateDSL.updateWithMapper(this::update, institutionRecord)
.set(name).equalTo(record::getName)
@ -149,7 +149,7 @@ public interface InstitutionRecordMapper {
.set(logoImage).equalTo(record::getLogoImage);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.150+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source Table: institution")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(InstitutionRecord record) {
return UpdateDSL.updateWithMapper(this::update, institutionRecord)
.set(name).equalToWhenPresent(record::getName)
@ -159,7 +159,7 @@ public interface InstitutionRecordMapper {
.set(logoImage).equalToWhenPresent(record::getLogoImage);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.151+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source Table: institution")
default int updateByPrimaryKey(InstitutionRecord record) {
return UpdateDSL.updateWithMapper(this::update, institutionRecord)
.set(name).equalTo(record::getName)
@ -172,7 +172,7 @@ public interface InstitutionRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.153+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source Table: institution")
default int updateByPrimaryKeySelective(InstitutionRecord record) {
return UpdateDSL.updateWithMapper(this::update, institutionRecord)
.set(name).equalToWhenPresent(record::getName)

View file

@ -6,37 +6,37 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class LmsSetupRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source Table: lms_setup")
public static final LmsSetupRecord lmsSetupRecord = new LmsSetupRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.id")
public static final SqlColumn<Long> id = lmsSetupRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.institution_id")
public static final SqlColumn<Long> institutionId = lmsSetupRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.name")
public static final SqlColumn<String> name = lmsSetupRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.lms_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_type")
public static final SqlColumn<String> lmsType = lmsSetupRecord.lmsType;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source field: lms_setup.lms_url")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_url")
public static final SqlColumn<String> lmsUrl = lmsSetupRecord.lmsUrl;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source field: lms_setup.lms_clientname")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_clientname")
public static final SqlColumn<String> lmsClientname = lmsSetupRecord.lmsClientname;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source field: lms_setup.lms_clientsecret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_clientsecret")
public static final SqlColumn<String> lmsClientsecret = lmsSetupRecord.lmsClientsecret;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source field: lms_setup.lms_rest_api_token")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source field: lms_setup.lms_rest_api_token")
public static final SqlColumn<String> lmsRestApiToken = lmsSetupRecord.lmsRestApiToken;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source field: lms_setup.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source field: lms_setup.active")
public static final SqlColumn<Integer> active = lmsSetupRecord.active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source Table: lms_setup")
public static final class LmsSetupRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface LmsSetupRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<LmsSetupRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -60,7 +60,7 @@ public interface LmsSetupRecordMapper {
})
LmsSetupRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -75,22 +75,22 @@ public interface LmsSetupRecordMapper {
})
List<LmsSetupRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.166+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(lmsSetupRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.167+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, lmsSetupRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.167+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, lmsSetupRecord)
.where(id, isEqualTo(id_))
@ -98,7 +98,7 @@ public interface LmsSetupRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.167+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default int insert(LmsSetupRecord record) {
return insert(SqlBuilder.insert(record)
.into(lmsSetupRecord)
@ -114,7 +114,7 @@ public interface LmsSetupRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.167+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default int insertSelective(LmsSetupRecord record) {
return insert(SqlBuilder.insert(record)
.into(lmsSetupRecord)
@ -130,19 +130,19 @@ public interface LmsSetupRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.167+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<LmsSetupRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, name, lmsType, lmsUrl, lmsClientname, lmsClientsecret, lmsRestApiToken, active)
.from(lmsSetupRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.168+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<LmsSetupRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, name, lmsType, lmsUrl, lmsClientname, lmsClientsecret, lmsRestApiToken, active)
.from(lmsSetupRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.168+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default LmsSetupRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, name, lmsType, lmsUrl, lmsClientname, lmsClientsecret, lmsRestApiToken, active)
.from(lmsSetupRecord)
@ -151,7 +151,7 @@ public interface LmsSetupRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.168+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(LmsSetupRecord record) {
return UpdateDSL.updateWithMapper(this::update, lmsSetupRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -164,7 +164,7 @@ public interface LmsSetupRecordMapper {
.set(active).equalTo(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.168+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(LmsSetupRecord record) {
return UpdateDSL.updateWithMapper(this::update, lmsSetupRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -177,7 +177,7 @@ public interface LmsSetupRecordMapper {
.set(active).equalToWhenPresent(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.168+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default int updateByPrimaryKey(LmsSetupRecord record) {
return UpdateDSL.updateWithMapper(this::update, lmsSetupRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -193,7 +193,7 @@ public interface LmsSetupRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.168+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.170+02:00", comments="Source Table: lms_setup")
default int updateByPrimaryKeySelective(LmsSetupRecord record) {
return UpdateDSL.updateWithMapper(this::update, lmsSetupRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -6,40 +6,40 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class OrientationRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.095+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source Table: orientation")
public static final OrientationRecord orientationRecord = new OrientationRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.096+02:00", comments="Source field: orientation.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.id")
public static final SqlColumn<Long> id = orientationRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.096+02:00", comments="Source field: orientation.config_attribute_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.129+02:00", comments="Source field: orientation.config_attribute_id")
public static final SqlColumn<Long> configAttributeId = orientationRecord.configAttributeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.096+02:00", comments="Source field: orientation.template_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.129+02:00", comments="Source field: orientation.template_id")
public static final SqlColumn<Long> templateId = orientationRecord.templateId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.096+02:00", comments="Source field: orientation.view_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.129+02:00", comments="Source field: orientation.view_id")
public static final SqlColumn<Long> viewId = orientationRecord.viewId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.096+02:00", comments="Source field: orientation.group_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.129+02:00", comments="Source field: orientation.group_id")
public static final SqlColumn<String> groupId = orientationRecord.groupId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.097+02:00", comments="Source field: orientation.x_position")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.129+02:00", comments="Source field: orientation.x_position")
public static final SqlColumn<Integer> xPosition = orientationRecord.xPosition;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.097+02:00", comments="Source field: orientation.y_position")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.129+02:00", comments="Source field: orientation.y_position")
public static final SqlColumn<Integer> yPosition = orientationRecord.yPosition;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.097+02:00", comments="Source field: orientation.width")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source field: orientation.width")
public static final SqlColumn<Integer> width = orientationRecord.width;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.097+02:00", comments="Source field: orientation.height")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source field: orientation.height")
public static final SqlColumn<Integer> height = orientationRecord.height;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.097+02:00", comments="Source field: orientation.title")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source field: orientation.title")
public static final SqlColumn<String> title = orientationRecord.title;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.095+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source Table: orientation")
public static final class OrientationRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface OrientationRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.097+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<OrientationRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -61,7 +61,7 @@ public interface OrientationRecordMapper {
})
OrientationRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -77,22 +77,22 @@ public interface OrientationRecordMapper {
})
List<OrientationRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(orientationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, orientationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, orientationRecord)
.where(id, isEqualTo(id_))
@ -100,7 +100,7 @@ public interface OrientationRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
default int insert(OrientationRecord record) {
return insert(SqlBuilder.insert(record)
.into(orientationRecord)
@ -117,7 +117,7 @@ public interface OrientationRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.098+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.130+02:00", comments="Source Table: orientation")
default int insertSelective(OrientationRecord record) {
return insert(SqlBuilder.insert(record)
.into(orientationRecord)
@ -134,19 +134,19 @@ public interface OrientationRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: orientation")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<OrientationRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, configAttributeId, templateId, viewId, groupId, xPosition, yPosition, width, height, title)
.from(orientationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: orientation")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<OrientationRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, configAttributeId, templateId, viewId, groupId, xPosition, yPosition, width, height, title)
.from(orientationRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: orientation")
default OrientationRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, configAttributeId, templateId, viewId, groupId, xPosition, yPosition, width, height, title)
.from(orientationRecord)
@ -155,7 +155,7 @@ public interface OrientationRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: orientation")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(OrientationRecord record) {
return UpdateDSL.updateWithMapper(this::update, orientationRecord)
.set(configAttributeId).equalTo(record::getConfigAttributeId)
@ -169,7 +169,7 @@ public interface OrientationRecordMapper {
.set(title).equalTo(record::getTitle);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: orientation")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(OrientationRecord record) {
return UpdateDSL.updateWithMapper(this::update, orientationRecord)
.set(configAttributeId).equalToWhenPresent(record::getConfigAttributeId)
@ -183,7 +183,7 @@ public interface OrientationRecordMapper {
.set(title).equalToWhenPresent(record::getTitle);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: orientation")
default int updateByPrimaryKey(OrientationRecord record) {
return UpdateDSL.updateWithMapper(this::update, orientationRecord)
.set(configAttributeId).equalTo(record::getConfigAttributeId)
@ -200,7 +200,7 @@ public interface OrientationRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: orientation")
default int updateByPrimaryKeySelective(OrientationRecord record) {
return UpdateDSL.updateWithMapper(this::update, orientationRecord)
.set(configAttributeId).equalToWhenPresent(record::getConfigAttributeId)

View file

@ -6,19 +6,19 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class RoleRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source Table: user_role")
public static final RoleRecord roleRecord = new RoleRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.id")
public static final SqlColumn<Long> id = roleRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.user_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.user_id")
public static final SqlColumn<Long> userId = roleRecord.userId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source field: user_role.role_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.role_name")
public static final SqlColumn<String> roleName = roleRecord.roleName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source Table: user_role")
public static final class RoleRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface RoleRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<RoleRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -54,7 +54,7 @@ public interface RoleRecordMapper {
})
RoleRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -63,22 +63,22 @@ public interface RoleRecordMapper {
})
List<RoleRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(roleRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, roleRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, roleRecord)
.where(id, isEqualTo(id_))
@ -86,7 +86,7 @@ public interface RoleRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default int insert(RoleRecord record) {
return insert(SqlBuilder.insert(record)
.into(roleRecord)
@ -96,7 +96,7 @@ public interface RoleRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default int insertSelective(RoleRecord record) {
return insert(SqlBuilder.insert(record)
.into(roleRecord)
@ -106,19 +106,19 @@ public interface RoleRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<RoleRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, userId, roleName)
.from(roleRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<RoleRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, userId, roleName)
.from(roleRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default RoleRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, userId, roleName)
.from(roleRecord)
@ -127,21 +127,21 @@ public interface RoleRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.174+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(RoleRecord record) {
return UpdateDSL.updateWithMapper(this::update, roleRecord)
.set(userId).equalTo(record::getUserId)
.set(roleName).equalTo(record::getRoleName);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.175+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.176+02:00", comments="Source Table: user_role")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(RoleRecord record) {
return UpdateDSL.updateWithMapper(this::update, roleRecord)
.set(userId).equalToWhenPresent(record::getUserId)
.set(roleName).equalToWhenPresent(record::getRoleName);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.175+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.177+02:00", comments="Source Table: user_role")
default int updateByPrimaryKey(RoleRecord record) {
return UpdateDSL.updateWithMapper(this::update, roleRecord)
.set(userId).equalTo(record::getUserId)
@ -151,7 +151,7 @@ public interface RoleRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.175+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.177+02:00", comments="Source Table: user_role")
default int updateByPrimaryKeySelective(RoleRecord record) {
return UpdateDSL.updateWithMapper(this::update, roleRecord)
.set(userId).equalToWhenPresent(record::getUserId)

View file

@ -7,34 +7,34 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class SebClientConfigRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.160+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source Table: seb_client_configuration")
public static final SebClientConfigRecord sebClientConfigRecord = new SebClientConfigRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.160+02:00", comments="Source field: seb_client_configuration.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.id")
public static final SqlColumn<Long> id = sebClientConfigRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.160+02:00", comments="Source field: seb_client_configuration.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.institution_id")
public static final SqlColumn<Long> institutionId = sebClientConfigRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.160+02:00", comments="Source field: seb_client_configuration.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.name")
public static final SqlColumn<String> name = sebClientConfigRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.160+02:00", comments="Source field: seb_client_configuration.date")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.date")
public static final SqlColumn<DateTime> date = sebClientConfigRecord.date;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source field: seb_client_configuration.client_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.client_name")
public static final SqlColumn<String> clientName = sebClientConfigRecord.clientName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source field: seb_client_configuration.client_secret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.client_secret")
public static final SqlColumn<String> clientSecret = sebClientConfigRecord.clientSecret;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source field: seb_client_configuration.encrypt_secret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.encrypt_secret")
public static final SqlColumn<String> encryptSecret = sebClientConfigRecord.encryptSecret;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source field: seb_client_configuration.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.active")
public static final SqlColumn<Integer> active = sebClientConfigRecord.active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.160+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source Table: seb_client_configuration")
public static final class SebClientConfigRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -34,20 +34,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface SebClientConfigRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source Table: seb_client_configuration")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source Table: seb_client_configuration")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source Table: seb_client_configuration")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<SebClientConfigRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source Table: seb_client_configuration")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -61,7 +61,7 @@ public interface SebClientConfigRecordMapper {
})
SebClientConfigRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.161+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source Table: seb_client_configuration")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -75,22 +75,22 @@ public interface SebClientConfigRecordMapper {
})
List<SebClientConfigRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(sebClientConfigRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, sebClientConfigRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, sebClientConfigRecord)
.where(id, isEqualTo(id_))
@ -98,7 +98,7 @@ public interface SebClientConfigRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default int insert(SebClientConfigRecord record) {
return insert(SqlBuilder.insert(record)
.into(sebClientConfigRecord)
@ -113,7 +113,7 @@ public interface SebClientConfigRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default int insertSelective(SebClientConfigRecord record) {
return insert(SqlBuilder.insert(record)
.into(sebClientConfigRecord)
@ -128,19 +128,19 @@ public interface SebClientConfigRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<SebClientConfigRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, name, date, clientName, clientSecret, encryptSecret, active)
.from(sebClientConfigRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<SebClientConfigRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, name, date, clientName, clientSecret, encryptSecret, active)
.from(sebClientConfigRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default SebClientConfigRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, name, date, clientName, clientSecret, encryptSecret, active)
.from(sebClientConfigRecord)
@ -149,7 +149,7 @@ public interface SebClientConfigRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(SebClientConfigRecord record) {
return UpdateDSL.updateWithMapper(this::update, sebClientConfigRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -161,7 +161,7 @@ public interface SebClientConfigRecordMapper {
.set(active).equalTo(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.162+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(SebClientConfigRecord record) {
return UpdateDSL.updateWithMapper(this::update, sebClientConfigRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -173,7 +173,7 @@ public interface SebClientConfigRecordMapper {
.set(active).equalToWhenPresent(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.163+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default int updateByPrimaryKey(SebClientConfigRecord record) {
return UpdateDSL.updateWithMapper(this::update, sebClientConfigRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -188,7 +188,7 @@ public interface SebClientConfigRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.163+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: seb_client_configuration")
default int updateByPrimaryKeySelective(SebClientConfigRecord record) {
return UpdateDSL.updateWithMapper(this::update, sebClientConfigRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -7,22 +7,22 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ThresholdRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source Table: threshold")
public static final ThresholdRecord thresholdRecord = new ThresholdRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.id")
public static final SqlColumn<Long> id = thresholdRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.indicator_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source field: threshold.indicator_id")
public static final SqlColumn<Long> indicatorId = thresholdRecord.indicatorId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source field: threshold.value")
public static final SqlColumn<BigDecimal> value = thresholdRecord.value;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.color")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source field: threshold.color")
public static final SqlColumn<String> color = thresholdRecord.color;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source Table: threshold")
public static final class ThresholdRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -33,20 +33,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ThresholdRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ThresholdRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -56,7 +56,7 @@ public interface ThresholdRecordMapper {
})
ThresholdRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -66,22 +66,22 @@ public interface ThresholdRecordMapper {
})
List<ThresholdRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(thresholdRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, thresholdRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, thresholdRecord)
.where(id, isEqualTo(id_))
@ -89,7 +89,7 @@ public interface ThresholdRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default int insert(ThresholdRecord record) {
return insert(SqlBuilder.insert(record)
.into(thresholdRecord)
@ -100,7 +100,7 @@ public interface ThresholdRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default int insertSelective(ThresholdRecord record) {
return insert(SqlBuilder.insert(record)
.into(thresholdRecord)
@ -111,19 +111,19 @@ public interface ThresholdRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ThresholdRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, indicatorId, value, color)
.from(thresholdRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ThresholdRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, indicatorId, value, color)
.from(thresholdRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.161+02:00", comments="Source Table: threshold")
default ThresholdRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, indicatorId, value, color)
.from(thresholdRecord)
@ -132,7 +132,7 @@ public interface ThresholdRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.162+02:00", comments="Source Table: threshold")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ThresholdRecord record) {
return UpdateDSL.updateWithMapper(this::update, thresholdRecord)
.set(indicatorId).equalTo(record::getIndicatorId)
@ -140,7 +140,7 @@ public interface ThresholdRecordMapper {
.set(color).equalTo(record::getColor);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.162+02:00", comments="Source Table: threshold")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ThresholdRecord record) {
return UpdateDSL.updateWithMapper(this::update, thresholdRecord)
.set(indicatorId).equalToWhenPresent(record::getIndicatorId)
@ -148,7 +148,7 @@ public interface ThresholdRecordMapper {
.set(color).equalToWhenPresent(record::getColor);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.162+02:00", comments="Source Table: threshold")
default int updateByPrimaryKey(ThresholdRecord record) {
return UpdateDSL.updateWithMapper(this::update, thresholdRecord)
.set(indicatorId).equalTo(record::getIndicatorId)
@ -159,7 +159,7 @@ public interface ThresholdRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.136+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.162+02:00", comments="Source Table: threshold")
default int updateByPrimaryKeySelective(ThresholdRecord record) {
return UpdateDSL.updateWithMapper(this::update, thresholdRecord)
.set(indicatorId).equalToWhenPresent(record::getIndicatorId)

View file

@ -6,31 +6,31 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class UserActivityLogRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.178+02:00", comments="Source Table: user_activity_log")
public static final UserActivityLogRecord userActivityLogRecord = new UserActivityLogRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source field: user_activity_log.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.178+02:00", comments="Source field: user_activity_log.id")
public static final SqlColumn<Long> id = userActivityLogRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source field: user_activity_log.user_uuid")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.178+02:00", comments="Source field: user_activity_log.user_uuid")
public static final SqlColumn<String> userUuid = userActivityLogRecord.userUuid;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source field: user_activity_log.timestamp")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source field: user_activity_log.timestamp")
public static final SqlColumn<Long> timestamp = userActivityLogRecord.timestamp;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source field: user_activity_log.activity_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source field: user_activity_log.activity_type")
public static final SqlColumn<String> activityType = userActivityLogRecord.activityType;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source field: user_activity_log.entity_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source field: user_activity_log.entity_type")
public static final SqlColumn<String> entityType = userActivityLogRecord.entityType;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source field: user_activity_log.entity_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source field: user_activity_log.entity_id")
public static final SqlColumn<String> entityId = userActivityLogRecord.entityId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source field: user_activity_log.message")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source field: user_activity_log.message")
public static final SqlColumn<String> message = userActivityLogRecord.message;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.176+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.178+02:00", comments="Source Table: user_activity_log")
public static final class UserActivityLogRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface UserActivityLogRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<UserActivityLogRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -58,7 +58,7 @@ public interface UserActivityLogRecordMapper {
})
UserActivityLogRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -71,22 +71,22 @@ public interface UserActivityLogRecordMapper {
})
List<UserActivityLogRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(userActivityLogRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, userActivityLogRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.179+02:00", comments="Source Table: user_activity_log")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, userActivityLogRecord)
.where(id, isEqualTo(id_))
@ -94,7 +94,7 @@ public interface UserActivityLogRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default int insert(UserActivityLogRecord record) {
return insert(SqlBuilder.insert(record)
.into(userActivityLogRecord)
@ -108,7 +108,7 @@ public interface UserActivityLogRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default int insertSelective(UserActivityLogRecord record) {
return insert(SqlBuilder.insert(record)
.into(userActivityLogRecord)
@ -122,19 +122,19 @@ public interface UserActivityLogRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<UserActivityLogRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, userUuid, timestamp, activityType, entityType, entityId, message)
.from(userActivityLogRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<UserActivityLogRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, userUuid, timestamp, activityType, entityType, entityId, message)
.from(userActivityLogRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default UserActivityLogRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, userUuid, timestamp, activityType, entityType, entityId, message)
.from(userActivityLogRecord)
@ -143,7 +143,7 @@ public interface UserActivityLogRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(UserActivityLogRecord record) {
return UpdateDSL.updateWithMapper(this::update, userActivityLogRecord)
.set(userUuid).equalTo(record::getUserUuid)
@ -154,7 +154,7 @@ public interface UserActivityLogRecordMapper {
.set(message).equalTo(record::getMessage);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(UserActivityLogRecord record) {
return UpdateDSL.updateWithMapper(this::update, userActivityLogRecord)
.set(userUuid).equalToWhenPresent(record::getUserUuid)
@ -165,7 +165,7 @@ public interface UserActivityLogRecordMapper {
.set(message).equalToWhenPresent(record::getMessage);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default int updateByPrimaryKey(UserActivityLogRecord record) {
return UpdateDSL.updateWithMapper(this::update, userActivityLogRecord)
.set(userUuid).equalTo(record::getUserUuid)
@ -179,7 +179,7 @@ public interface UserActivityLogRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.177+02:00", comments="Source Table: user_activity_log")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.180+02:00", comments="Source Table: user_activity_log")
default int updateByPrimaryKeySelective(UserActivityLogRecord record) {
return UpdateDSL.updateWithMapper(this::update, userActivityLogRecord)
.set(userUuid).equalToWhenPresent(record::getUserUuid)

View file

@ -6,40 +6,40 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class UserRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.170+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.172+02:00", comments="Source Table: user")
public static final UserRecord userRecord = new UserRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.172+02:00", comments="Source field: user.id")
public static final SqlColumn<Long> id = userRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.172+02:00", comments="Source field: user.institution_id")
public static final SqlColumn<Long> institutionId = userRecord.institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.uuid")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.172+02:00", comments="Source field: user.uuid")
public static final SqlColumn<String> uuid = userRecord.uuid;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.172+02:00", comments="Source field: user.name")
public static final SqlColumn<String> name = userRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.username")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source field: user.username")
public static final SqlColumn<String> username = userRecord.username;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.password")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source field: user.password")
public static final SqlColumn<String> password = userRecord.password;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.email")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source field: user.email")
public static final SqlColumn<String> email = userRecord.email;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.language")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source field: user.language")
public static final SqlColumn<String> language = userRecord.language;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.timezone")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source field: user.timezone")
public static final SqlColumn<String> timezone = userRecord.timezone;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source field: user.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source field: user.active")
public static final SqlColumn<Integer> active = userRecord.active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.170+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.172+02:00", comments="Source Table: user")
public static final class UserRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);

View file

@ -32,20 +32,20 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface UserRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source Table: user")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.171+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source Table: user")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source Table: user")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<UserRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source Table: user")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -61,7 +61,7 @@ public interface UserRecordMapper {
})
UserRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source Table: user")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@ -77,22 +77,22 @@ public interface UserRecordMapper {
})
List<UserRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source Table: user")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.173+02:00", comments="Source Table: user")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(userRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, userRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, userRecord)
.where(id, isEqualTo(id_))
@ -100,7 +100,7 @@ public interface UserRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default int insert(UserRecord record) {
return insert(SqlBuilder.insert(record)
.into(userRecord)
@ -117,7 +117,7 @@ public interface UserRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default int insertSelective(UserRecord record) {
return insert(SqlBuilder.insert(record)
.into(userRecord)
@ -134,19 +134,19 @@ public interface UserRecordMapper {
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<UserRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, institutionId, uuid, name, username, password, email, language, timezone, active)
.from(userRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<UserRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, institutionId, uuid, name, username, password, email, language, timezone, active)
.from(userRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default UserRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, institutionId, uuid, name, username, password, email, language, timezone, active)
.from(userRecord)
@ -155,7 +155,7 @@ public interface UserRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(UserRecord record) {
return UpdateDSL.updateWithMapper(this::update, userRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -169,7 +169,7 @@ public interface UserRecordMapper {
.set(active).equalTo(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(UserRecord record) {
return UpdateDSL.updateWithMapper(this::update, userRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)
@ -183,7 +183,7 @@ public interface UserRecordMapper {
.set(active).equalToWhenPresent(record::getActive);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default int updateByPrimaryKey(UserRecord record) {
return UpdateDSL.updateWithMapper(this::update, userRecord)
.set(institutionId).equalTo(record::getInstitutionId)
@ -200,7 +200,7 @@ public interface UserRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.172+02:00", comments="Source Table: user")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.174+02:00", comments="Source Table: user")
default int updateByPrimaryKeySelective(UserRecord record) {
return UpdateDSL.updateWithMapper(this::update, userRecord)
.set(institutionId).equalToWhenPresent(record::getInstitutionId)

View file

@ -6,24 +6,29 @@ import org.mybatis.dynamic.sql.SqlColumn;
import org.mybatis.dynamic.sql.SqlTable;
public final class ViewRecordDynamicSqlSupport {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.086+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source Table: view")
public static final ViewRecord viewRecord = new ViewRecord();
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.086+02:00", comments="Source field: view.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source field: view.id")
public static final SqlColumn<Long> id = viewRecord.id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.086+02:00", comments="Source field: view.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source field: view.name")
public static final SqlColumn<String> name = viewRecord.name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.086+02:00", comments="Source field: view.position")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source field: view.columns")
public static final SqlColumn<Integer> columns = viewRecord.columns;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source field: view.position")
public static final SqlColumn<Integer> position = viewRecord.position;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.086+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source Table: view")
public static final class ViewRecord extends SqlTable {
public final SqlColumn<Long> id = column("id", JDBCType.BIGINT);
public final SqlColumn<String> name = column("name", JDBCType.VARCHAR);
public final SqlColumn<Integer> columns = column("columns", JDBCType.INTEGER);
public final SqlColumn<Integer> position = column("position", JDBCType.INTEGER);
public ViewRecord() {

View file

@ -32,53 +32,55 @@ import org.mybatis.dynamic.sql.util.SqlProviderAdapter;
@Mapper
public interface ViewRecordMapper {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.087+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source Table: view")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
long count(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.087+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source Table: view")
@DeleteProvider(type=SqlProviderAdapter.class, method="delete")
int delete(DeleteStatementProvider deleteStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.087+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source Table: view")
@InsertProvider(type=SqlProviderAdapter.class, method="insert")
@SelectKey(statement="SELECT LAST_INSERT_ID()", keyProperty="record.id", before=false, resultType=Long.class)
int insert(InsertStatementProvider<ViewRecord> insertStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.087+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.125+02:00", comments="Source Table: view")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@Arg(column="name", javaType=String.class, jdbcType=JdbcType.VARCHAR),
@Arg(column="columns", javaType=Integer.class, jdbcType=JdbcType.INTEGER),
@Arg(column="position", javaType=Integer.class, jdbcType=JdbcType.INTEGER)
})
ViewRecord selectOne(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.087+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
@SelectProvider(type=SqlProviderAdapter.class, method="select")
@ConstructorArgs({
@Arg(column="id", javaType=Long.class, jdbcType=JdbcType.BIGINT, id=true),
@Arg(column="name", javaType=String.class, jdbcType=JdbcType.VARCHAR),
@Arg(column="columns", javaType=Integer.class, jdbcType=JdbcType.INTEGER),
@Arg(column="position", javaType=Integer.class, jdbcType=JdbcType.INTEGER)
})
List<ViewRecord> selectMany(SelectStatementProvider selectStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.087+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
@UpdateProvider(type=SqlProviderAdapter.class, method="update")
int update(UpdateStatementProvider updateStatement);
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.087+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<Long>> countByExample() {
return SelectDSL.selectWithMapper(this::count, SqlBuilder.count())
.from(viewRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default DeleteDSL<MyBatis3DeleteModelAdapter<Integer>> deleteByExample() {
return DeleteDSL.deleteFromWithMapper(this::delete, viewRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default int deleteByPrimaryKey(Long id_) {
return DeleteDSL.deleteFromWithMapper(this::delete, viewRecord)
.where(id, isEqualTo(id_))
@ -86,75 +88,81 @@ public interface ViewRecordMapper {
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default int insert(ViewRecord record) {
return insert(SqlBuilder.insert(record)
.into(viewRecord)
.map(name).toProperty("name")
.map(columns).toProperty("columns")
.map(position).toProperty("position")
.build()
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default int insertSelective(ViewRecord record) {
return insert(SqlBuilder.insert(record)
.into(viewRecord)
.map(name).toPropertyWhenPresent("name", record::getName)
.map(columns).toPropertyWhenPresent("columns", record::getColumns)
.map(position).toPropertyWhenPresent("position", record::getPosition)
.build()
.render(RenderingStrategy.MYBATIS3));
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ViewRecord>>> selectByExample() {
return SelectDSL.selectWithMapper(this::selectMany, id, name, position)
return SelectDSL.selectWithMapper(this::selectMany, id, name, columns, position)
.from(viewRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default QueryExpressionDSL<MyBatis3SelectModelAdapter<List<ViewRecord>>> selectDistinctByExample() {
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, name, position)
return SelectDSL.selectDistinctWithMapper(this::selectMany, id, name, columns, position)
.from(viewRecord);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default ViewRecord selectByPrimaryKey(Long id_) {
return SelectDSL.selectWithMapper(this::selectOne, id, name, position)
return SelectDSL.selectWithMapper(this::selectOne, id, name, columns, position)
.from(viewRecord)
.where(id, isEqualTo(id_))
.build()
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.088+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExample(ViewRecord record) {
return UpdateDSL.updateWithMapper(this::update, viewRecord)
.set(name).equalTo(record::getName)
.set(columns).equalTo(record::getColumns)
.set(position).equalTo(record::getPosition);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.089+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default UpdateDSL<MyBatis3UpdateModelAdapter<Integer>> updateByExampleSelective(ViewRecord record) {
return UpdateDSL.updateWithMapper(this::update, viewRecord)
.set(name).equalToWhenPresent(record::getName)
.set(columns).equalToWhenPresent(record::getColumns)
.set(position).equalToWhenPresent(record::getPosition);
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.091+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default int updateByPrimaryKey(ViewRecord record) {
return UpdateDSL.updateWithMapper(this::update, viewRecord)
.set(name).equalTo(record::getName)
.set(columns).equalTo(record::getColumns)
.set(position).equalTo(record::getPosition)
.where(id, isEqualTo(record::getId))
.build()
.execute();
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.091+02:00", comments="Source Table: view")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.126+02:00", comments="Source Table: view")
default int updateByPrimaryKeySelective(ViewRecord record) {
return UpdateDSL.updateWithMapper(this::update, viewRecord)
.set(name).equalToWhenPresent(record::getName)
.set(columns).equalToWhenPresent(record::getColumns)
.set(position).equalToWhenPresent(record::getPosition)
.where(id, isEqualTo(record::getId))
.build()

View file

@ -3,22 +3,22 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class AdditionalAttributes {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.entity_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.entity_type")
private String entityType;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.entity_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.entity_id")
private Long entityId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.name")
private String name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.value")
private String value;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source Table: additional_attributes")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source Table: additional_attributes")
public AdditionalAttributes(Long id, String entityType, Long entityId, String name, String value) {
this.id = id;
this.entityType = entityType;
@ -27,27 +27,27 @@ public class AdditionalAttributes {
this.value = value;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.entity_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.entity_type")
public String getEntityType() {
return entityType;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.entity_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.entity_id")
public Long getEntityId() {
return entityId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.name")
public String getName() {
return name;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.178+02:00", comments="Source field: additional_attributes.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.181+02:00", comments="Source field: additional_attributes.value")
public String getValue() {
return value;
}
@ -56,7 +56,7 @@ public class AdditionalAttributes {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table additional_attributes
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -77,7 +77,7 @@ public class AdditionalAttributes {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table additional_attributes
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -102,7 +102,7 @@ public class AdditionalAttributes {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table additional_attributes
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,31 +3,31 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class ClientConnectionRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.149+02:00", comments="Source field: client_connection.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.149+02:00", comments="Source field: client_connection.exam_id")
private Long examId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.status")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.149+02:00", comments="Source field: client_connection.status")
private String status;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.connection_token")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.connection_token")
private String connectionToken;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.user_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.user_name")
private String userName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.vdi")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.vdi")
private Boolean vdi;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.122+02:00", comments="Source field: client_connection.client_address")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.client_address")
private String clientAddress;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.122+02:00", comments="Source field: client_connection.virtual_client_address")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.virtual_client_address")
private String virtualClientAddress;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source Table: client_connection")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.149+02:00", comments="Source Table: client_connection")
public ClientConnectionRecord(Long id, Long examId, String status, String connectionToken, String userName, Boolean vdi, String clientAddress, String virtualClientAddress) {
this.id = id;
this.examId = examId;
@ -39,42 +39,42 @@ public class ClientConnectionRecord {
this.virtualClientAddress = virtualClientAddress;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.149+02:00", comments="Source field: client_connection.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.149+02:00", comments="Source field: client_connection.exam_id")
public Long getExamId() {
return examId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.status")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.149+02:00", comments="Source field: client_connection.status")
public String getStatus() {
return status;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.connection_token")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.connection_token")
public String getConnectionToken() {
return connectionToken;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.121+02:00", comments="Source field: client_connection.user_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.user_name")
public String getUserName() {
return userName;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.122+02:00", comments="Source field: client_connection.vdi")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.vdi")
public Boolean getVdi() {
return vdi;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.122+02:00", comments="Source field: client_connection.client_address")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.client_address")
public String getClientAddress() {
return clientAddress;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.122+02:00", comments="Source field: client_connection.virtual_client_address")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.150+02:00", comments="Source field: client_connection.virtual_client_address")
public String getVirtualClientAddress() {
return virtualClientAddress;
}
@ -83,7 +83,7 @@ public class ClientConnectionRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table client_connection
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -107,7 +107,7 @@ public class ClientConnectionRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table client_connection
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -135,7 +135,7 @@ public class ClientConnectionRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table client_connection
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -4,28 +4,28 @@ import java.math.BigDecimal;
import javax.annotation.Generated;
public class ClientEventRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.127+02:00", comments="Source field: client_event.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.127+02:00", comments="Source field: client_event.connection_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.connection_id")
private Long connectionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.user_identifier")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.user_identifier")
private String userIdentifier;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.type")
private Integer type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.timestamp")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source field: client_event.timestamp")
private Long timestamp;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.numeric_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source field: client_event.numeric_value")
private BigDecimal numericValue;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.text")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source field: client_event.text")
private String text;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.127+02:00", comments="Source Table: client_event")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source Table: client_event")
public ClientEventRecord(Long id, Long connectionId, String userIdentifier, Integer type, Long timestamp, BigDecimal numericValue, String text) {
this.id = id;
this.connectionId = connectionId;
@ -36,37 +36,37 @@ public class ClientEventRecord {
this.text = text;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.127+02:00", comments="Source field: client_event.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.connection_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.connection_id")
public Long getConnectionId() {
return connectionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.user_identifier")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.user_identifier")
public String getUserIdentifier() {
return userIdentifier;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.153+02:00", comments="Source field: client_event.type")
public Integer getType() {
return type;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.timestamp")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source field: client_event.timestamp")
public Long getTimestamp() {
return timestamp;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.numeric_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source field: client_event.numeric_value")
public BigDecimal getNumericValue() {
return numericValue;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.128+02:00", comments="Source field: client_event.text")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.154+02:00", comments="Source field: client_event.text")
public String getText() {
return text;
}
@ -75,7 +75,7 @@ public class ClientEventRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table client_event
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -98,7 +98,7 @@ public class ClientEventRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table client_event
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -125,7 +125,7 @@ public class ClientEventRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table client_event
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,31 +3,31 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class ConfigurationAttributeRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.848+02:00", comments="Source field: configuration_attribute.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.974+02:00", comments="Source field: configuration_attribute.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.849+02:00", comments="Source field: configuration_attribute.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.name")
private String name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.849+02:00", comments="Source field: configuration_attribute.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.type")
private String type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.849+02:00", comments="Source field: configuration_attribute.parent_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.parent_id")
private Long parentId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.resources")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.resources")
private String resources;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.validator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.validator")
private String validator;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.dependencies")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.dependencies")
private String dependencies;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.default_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.default_value")
private String defaultValue;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.844+02:00", comments="Source Table: configuration_attribute")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.964+02:00", comments="Source Table: configuration_attribute")
public ConfigurationAttributeRecord(Long id, String name, String type, Long parentId, String resources, String validator, String dependencies, String defaultValue) {
this.id = id;
this.name = name;
@ -39,42 +39,42 @@ public class ConfigurationAttributeRecord {
this.defaultValue = defaultValue;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.849+02:00", comments="Source field: configuration_attribute.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.849+02:00", comments="Source field: configuration_attribute.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.name")
public String getName() {
return name;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.849+02:00", comments="Source field: configuration_attribute.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.type")
public String getType() {
return type;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.849+02:00", comments="Source field: configuration_attribute.parent_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.parent_id")
public Long getParentId() {
return parentId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.resources")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.resources")
public String getResources() {
return resources;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.validator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.validator")
public String getValidator() {
return validator;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.dependencies")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.dependencies")
public String getDependencies() {
return dependencies;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:48.850+02:00", comments="Source field: configuration_attribute.default_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:56.975+02:00", comments="Source field: configuration_attribute.default_value")
public String getDefaultValue() {
return defaultValue;
}
@ -83,7 +83,7 @@ public class ConfigurationAttributeRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_attribute
*
* @mbg.generated Tue Apr 30 14:19:48 CEST 2019
* @mbg.generated Mon May 13 14:59:56 CEST 2019
*/
@Override
public String toString() {
@ -107,7 +107,7 @@ public class ConfigurationAttributeRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_attribute
*
* @mbg.generated Tue Apr 30 14:19:48 CEST 2019
* @mbg.generated Mon May 13 14:59:56 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -135,7 +135,7 @@ public class ConfigurationAttributeRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_attribute
*
* @mbg.generated Tue Apr 30 14:19:48 CEST 2019
* @mbg.generated Mon May 13 14:59:56 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,31 +3,31 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class ConfigurationNodeRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source field: configuration_node.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source field: configuration_node.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.institution_id")
private Long institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.template_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.template_id")
private Long templateId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.owner")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.owner")
private String owner;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.name")
private String name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.description")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.description")
private String description;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.type")
private String type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.status")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.status")
private String status;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source Table: configuration_node")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source Table: configuration_node")
public ConfigurationNodeRecord(Long id, Long institutionId, Long templateId, String owner, String name, String description, String type, String status) {
this.id = id;
this.institutionId = institutionId;
@ -39,42 +39,42 @@ public class ConfigurationNodeRecord {
this.status = status;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.103+02:00", comments="Source field: configuration_node.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.institution_id")
public Long getInstitutionId() {
return institutionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.template_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.template_id")
public Long getTemplateId() {
return templateId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.owner")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.owner")
public String getOwner() {
return owner;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.name")
public String getName() {
return name;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.description")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.description")
public String getDescription() {
return description;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.104+02:00", comments="Source field: configuration_node.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.135+02:00", comments="Source field: configuration_node.type")
public String getType() {
return type;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.105+02:00", comments="Source field: configuration_node.status")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.136+02:00", comments="Source field: configuration_node.status")
public String getStatus() {
return status;
}
@ -83,7 +83,7 @@ public class ConfigurationNodeRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_node
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -107,7 +107,7 @@ public class ConfigurationNodeRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_node
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -135,7 +135,7 @@ public class ConfigurationNodeRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_node
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -4,25 +4,25 @@ import javax.annotation.Generated;
import org.joda.time.DateTime;
public class ConfigurationRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source field: configuration.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source field: configuration.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.institution_id")
private Long institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.configuration_node_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.configuration_node_id")
private Long configurationNodeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.version")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.version")
private String version;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.version_date")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.version_date")
private DateTime versionDate;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.followup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.followup")
private Integer followup;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.099+02:00", comments="Source Table: configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source Table: configuration")
public ConfigurationRecord(Long id, Long institutionId, Long configurationNodeId, String version, DateTime versionDate, Integer followup) {
this.id = id;
this.institutionId = institutionId;
@ -32,32 +32,32 @@ public class ConfigurationRecord {
this.followup = followup;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.131+02:00", comments="Source field: configuration.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.institution_id")
public Long getInstitutionId() {
return institutionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.configuration_node_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.configuration_node_id")
public Long getConfigurationNodeId() {
return configurationNodeId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.version")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.version")
public String getVersion() {
return version;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.version_date")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.version_date")
public DateTime getVersionDate() {
return versionDate;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.100+02:00", comments="Source field: configuration.followup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.132+02:00", comments="Source field: configuration.followup")
public Integer getFollowup() {
return followup;
}
@ -66,7 +66,7 @@ public class ConfigurationRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -88,7 +88,7 @@ public class ConfigurationRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -114,7 +114,7 @@ public class ConfigurationRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,28 +3,28 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class ConfigurationValueRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.institution_id")
private Long institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.configuration_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.configuration_id")
private Long configurationId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.configuration_attribute_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.configuration_attribute_id")
private Long configurationAttributeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.list_index")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.list_index")
private Integer listIndex;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.075+02:00", comments="Source field: configuration_value.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.value")
private String value;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.075+02:00", comments="Source field: configuration_value.text")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source field: configuration_value.text")
private String text;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.072+02:00", comments="Source Table: configuration_value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source Table: configuration_value")
public ConfigurationValueRecord(Long id, Long institutionId, Long configurationId, Long configurationAttributeId, Integer listIndex, String value, String text) {
this.id = id;
this.institutionId = institutionId;
@ -35,37 +35,37 @@ public class ConfigurationValueRecord {
this.text = text;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.institution_id")
public Long getInstitutionId() {
return institutionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.configuration_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.configuration_id")
public Long getConfigurationId() {
return configurationId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.073+02:00", comments="Source field: configuration_value.configuration_attribute_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.configuration_attribute_id")
public Long getConfigurationAttributeId() {
return configurationAttributeId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.074+02:00", comments="Source field: configuration_value.list_index")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.list_index")
public Integer getListIndex() {
return listIndex;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.075+02:00", comments="Source field: configuration_value.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.119+02:00", comments="Source field: configuration_value.value")
public String getValue() {
return value;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.075+02:00", comments="Source field: configuration_value.text")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.120+02:00", comments="Source field: configuration_value.text")
public String getText() {
return text;
}
@ -74,7 +74,7 @@ public class ConfigurationValueRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_value
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -97,7 +97,7 @@ public class ConfigurationValueRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_value
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -124,7 +124,7 @@ public class ConfigurationValueRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table configuration_value
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,22 +3,22 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class ExamConfigurationMapRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.institution_id")
private Long institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.exam_id")
private Long examId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.configuration_node_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.configuration_node_id")
private Long configurationNodeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.112+02:00", comments="Source field: exam_configuration_map.user_names")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.user_names")
private String userNames;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.110+02:00", comments="Source Table: exam_configuration_map")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source Table: exam_configuration_map")
public ExamConfigurationMapRecord(Long id, Long institutionId, Long examId, Long configurationNodeId, String userNames) {
this.id = id;
this.institutionId = institutionId;
@ -27,27 +27,27 @@ public class ExamConfigurationMapRecord {
this.userNames = userNames;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.institution_id")
public Long getInstitutionId() {
return institutionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.exam_id")
public Long getExamId() {
return examId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.111+02:00", comments="Source field: exam_configuration_map.configuration_node_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.configuration_node_id")
public Long getConfigurationNodeId() {
return configurationNodeId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.112+02:00", comments="Source field: exam_configuration_map.user_names")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.141+02:00", comments="Source field: exam_configuration_map.user_names")
public String getUserNames() {
return userNames;
}
@ -56,7 +56,7 @@ public class ExamConfigurationMapRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table exam_configuration_map
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -77,7 +77,7 @@ public class ExamConfigurationMapRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table exam_configuration_map
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -102,7 +102,7 @@ public class ExamConfigurationMapRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table exam_configuration_map
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,34 +3,34 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class ExamRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.115+02:00", comments="Source field: exam.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.115+02:00", comments="Source field: exam.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.institution_id")
private Long institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.lms_setup_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.lms_setup_id")
private Long lmsSetupId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.external_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.external_id")
private String externalId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.owner")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.owner")
private String owner;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.supporter")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.supporter")
private String supporter;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.type")
private String type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.quit_password")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.quit_password")
private String quitPassword;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.active")
private Integer active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.115+02:00", comments="Source Table: exam")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source Table: exam")
public ExamRecord(Long id, Long institutionId, Long lmsSetupId, String externalId, String owner, String supporter, String type, String quitPassword, Integer active) {
this.id = id;
this.institutionId = institutionId;
@ -43,47 +43,47 @@ public class ExamRecord {
this.active = active;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.115+02:00", comments="Source field: exam.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.institution_id")
public Long getInstitutionId() {
return institutionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.lms_setup_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.lms_setup_id")
public Long getLmsSetupId() {
return lmsSetupId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.external_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.145+02:00", comments="Source field: exam.external_id")
public String getExternalId() {
return externalId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.owner")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.owner")
public String getOwner() {
return owner;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.supporter")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.supporter")
public String getSupporter() {
return supporter;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.type")
public String getType() {
return type;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.116+02:00", comments="Source field: exam.quit_password")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.quit_password")
public String getQuitPassword() {
return quitPassword;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.117+02:00", comments="Source field: exam.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.146+02:00", comments="Source field: exam.active")
public Integer getActive() {
return active;
}
@ -92,7 +92,7 @@ public class ExamRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table exam
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -117,7 +117,7 @@ public class ExamRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table exam
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -146,7 +146,7 @@ public class ExamRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table exam
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,22 +3,22 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class IndicatorRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source field: indicator.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.157+02:00", comments="Source field: indicator.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source field: indicator.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.157+02:00", comments="Source field: indicator.exam_id")
private Long examId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.157+02:00", comments="Source field: indicator.type")
private String type;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.name")
private String name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.color")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.color")
private String color;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source Table: indicator")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.157+02:00", comments="Source Table: indicator")
public IndicatorRecord(Long id, Long examId, String type, String name, String color) {
this.id = id;
this.examId = examId;
@ -27,27 +27,27 @@ public class IndicatorRecord {
this.color = color;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source field: indicator.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.157+02:00", comments="Source field: indicator.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.131+02:00", comments="Source field: indicator.exam_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.157+02:00", comments="Source field: indicator.exam_id")
public Long getExamId() {
return examId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.157+02:00", comments="Source field: indicator.type")
public String getType() {
return type;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.name")
public String getName() {
return name;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.132+02:00", comments="Source field: indicator.color")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.158+02:00", comments="Source field: indicator.color")
public String getColor() {
return color;
}
@ -56,7 +56,7 @@ public class IndicatorRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table indicator
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -77,7 +77,7 @@ public class IndicatorRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table indicator
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -102,7 +102,7 @@ public class IndicatorRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table indicator
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,25 +3,25 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class InstitutionRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.137+02:00", comments="Source field: institution.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.163+02:00", comments="Source field: institution.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.137+02:00", comments="Source field: institution.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.name")
private String name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.146+02:00", comments="Source field: institution.url_suffix")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.url_suffix")
private String urlSuffix;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.theme_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.theme_name")
private String themeName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.active")
private Integer active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.logo_image")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.logo_image")
private String logoImage;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.137+02:00", comments="Source Table: institution")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.163+02:00", comments="Source Table: institution")
public InstitutionRecord(Long id, String name, String urlSuffix, String themeName, Integer active, String logoImage) {
this.id = id;
this.name = name;
@ -31,32 +31,32 @@ public class InstitutionRecord {
this.logoImage = logoImage;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.137+02:00", comments="Source field: institution.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.163+02:00", comments="Source field: institution.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.137+02:00", comments="Source field: institution.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.name")
public String getName() {
return name;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.url_suffix")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.url_suffix")
public String getUrlSuffix() {
return urlSuffix;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.theme_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.theme_name")
public String getThemeName() {
return themeName;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.active")
public Integer getActive() {
return active;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.147+02:00", comments="Source field: institution.logo_image")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.164+02:00", comments="Source field: institution.logo_image")
public String getLogoImage() {
return logoImage;
}
@ -65,7 +65,7 @@ public class InstitutionRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institution
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -87,7 +87,7 @@ public class InstitutionRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institution
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -113,7 +113,7 @@ public class InstitutionRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table institution
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,34 +3,34 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class LmsSetupRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.163+02:00", comments="Source field: lms_setup.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source field: lms_setup.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source field: lms_setup.institution_id")
private Long institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source field: lms_setup.name")
private String name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.lms_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source field: lms_setup.lms_type")
private String lmsType;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.lms_url")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_url")
private String lmsUrl;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.lms_clientname")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_clientname")
private String lmsClientname;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.lms_clientsecret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_clientsecret")
private String lmsClientsecret;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.lms_rest_api_token")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_rest_api_token")
private String lmsRestApiToken;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.active")
private Integer active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.163+02:00", comments="Source Table: lms_setup")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source Table: lms_setup")
public LmsSetupRecord(Long id, Long institutionId, String name, String lmsType, String lmsUrl, String lmsClientname, String lmsClientsecret, String lmsRestApiToken, Integer active) {
this.id = id;
this.institutionId = institutionId;
@ -43,47 +43,47 @@ public class LmsSetupRecord {
this.active = active;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.163+02:00", comments="Source field: lms_setup.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source field: lms_setup.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source field: lms_setup.institution_id")
public Long getInstitutionId() {
return institutionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.168+02:00", comments="Source field: lms_setup.name")
public String getName() {
return name;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.lms_type")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_type")
public String getLmsType() {
return lmsType;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.lms_url")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_url")
public String getLmsUrl() {
return lmsUrl;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.164+02:00", comments="Source field: lms_setup.lms_clientname")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_clientname")
public String getLmsClientname() {
return lmsClientname;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.lms_clientsecret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_clientsecret")
public String getLmsClientsecret() {
return lmsClientsecret;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.lms_rest_api_token")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.lms_rest_api_token")
public String getLmsRestApiToken() {
return lmsRestApiToken;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.165+02:00", comments="Source field: lms_setup.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.169+02:00", comments="Source field: lms_setup.active")
public Integer getActive() {
return active;
}
@ -92,7 +92,7 @@ public class LmsSetupRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table lms_setup
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -117,7 +117,7 @@ public class LmsSetupRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table lms_setup
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -146,7 +146,7 @@ public class LmsSetupRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table lms_setup
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,37 +3,37 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class OrientationRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.092+02:00", comments="Source field: orientation.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.092+02:00", comments="Source field: orientation.config_attribute_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.config_attribute_id")
private Long configAttributeId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.template_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.template_id")
private Long templateId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.view_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.view_id")
private Long viewId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.group_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.group_id")
private String groupId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.x_position")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.x_position")
private Integer xPosition;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.094+02:00", comments="Source field: orientation.y_position")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.y_position")
private Integer yPosition;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.094+02:00", comments="Source field: orientation.width")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.width")
private Integer width;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.094+02:00", comments="Source field: orientation.height")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.height")
private Integer height;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.095+02:00", comments="Source field: orientation.title")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.title")
private String title;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.092+02:00", comments="Source Table: orientation")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source Table: orientation")
public OrientationRecord(Long id, Long configAttributeId, Long templateId, Long viewId, String groupId, Integer xPosition, Integer yPosition, Integer width, Integer height, String title) {
this.id = id;
this.configAttributeId = configAttributeId;
@ -47,52 +47,52 @@ public class OrientationRecord {
this.title = title;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.092+02:00", comments="Source field: orientation.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.config_attribute_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.config_attribute_id")
public Long getConfigAttributeId() {
return configAttributeId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.template_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.template_id")
public Long getTemplateId() {
return templateId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.view_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.view_id")
public Long getViewId() {
return viewId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.093+02:00", comments="Source field: orientation.group_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.group_id")
public String getGroupId() {
return groupId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.094+02:00", comments="Source field: orientation.x_position")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.127+02:00", comments="Source field: orientation.x_position")
public Integer getxPosition() {
return xPosition;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.094+02:00", comments="Source field: orientation.y_position")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.y_position")
public Integer getyPosition() {
return yPosition;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.094+02:00", comments="Source field: orientation.width")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.width")
public Integer getWidth() {
return width;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.095+02:00", comments="Source field: orientation.height")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.height")
public Integer getHeight() {
return height;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.095+02:00", comments="Source field: orientation.title")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.128+02:00", comments="Source field: orientation.title")
public String getTitle() {
return title;
}
@ -101,7 +101,7 @@ public class OrientationRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table orientation
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -127,7 +127,7 @@ public class OrientationRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table orientation
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -157,7 +157,7 @@ public class OrientationRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table orientation
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -3,33 +3,33 @@ package ch.ethz.seb.sebserver.webservice.datalayer.batis.model;
import javax.annotation.Generated;
public class RoleRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.user_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.user_id")
private Long userId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.role_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.role_name")
private String roleName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source Table: user_role")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source Table: user_role")
public RoleRecord(Long id, Long userId, String roleName) {
this.id = id;
this.userId = userId;
this.roleName = roleName;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.user_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.user_id")
public Long getUserId() {
return userId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.173+02:00", comments="Source field: user_role.role_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.175+02:00", comments="Source field: user_role.role_name")
public String getRoleName() {
return roleName;
}
@ -38,7 +38,7 @@ public class RoleRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user_role
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -57,7 +57,7 @@ public class RoleRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user_role
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -80,7 +80,7 @@ public class RoleRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table user_role
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -4,31 +4,31 @@ import javax.annotation.Generated;
import org.joda.time.DateTime;
public class SebClientConfigRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.156+02:00", comments="Source field: seb_client_configuration.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.156+02:00", comments="Source field: seb_client_configuration.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.institution_id")
private Long institutionId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.158+02:00", comments="Source field: seb_client_configuration.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.name")
private String name;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.158+02:00", comments="Source field: seb_client_configuration.date")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.date")
private DateTime date;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.client_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.client_name")
private String clientName;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.client_secret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.client_secret")
private String clientSecret;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.encrypt_secret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.encrypt_secret")
private String encryptSecret;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.active")
private Integer active;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.156+02:00", comments="Source Table: seb_client_configuration")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source Table: seb_client_configuration")
public SebClientConfigRecord(Long id, Long institutionId, String name, DateTime date, String clientName, String clientSecret, String encryptSecret, Integer active) {
this.id = id;
this.institutionId = institutionId;
@ -40,42 +40,42 @@ public class SebClientConfigRecord {
this.active = active;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.156+02:00", comments="Source field: seb_client_configuration.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.158+02:00", comments="Source field: seb_client_configuration.institution_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.institution_id")
public Long getInstitutionId() {
return institutionId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.158+02:00", comments="Source field: seb_client_configuration.name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.name")
public String getName() {
return name;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.date")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.166+02:00", comments="Source field: seb_client_configuration.date")
public DateTime getDate() {
return date;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.client_name")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.client_name")
public String getClientName() {
return clientName;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.client_secret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.client_secret")
public String getClientSecret() {
return clientSecret;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.encrypt_secret")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.encrypt_secret")
public String getEncryptSecret() {
return encryptSecret;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.159+02:00", comments="Source field: seb_client_configuration.active")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.167+02:00", comments="Source field: seb_client_configuration.active")
public Integer getActive() {
return active;
}
@ -84,7 +84,7 @@ public class SebClientConfigRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table seb_client_configuration
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -108,7 +108,7 @@ public class SebClientConfigRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table seb_client_configuration
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -136,7 +136,7 @@ public class SebClientConfigRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table seb_client_configuration
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

View file

@ -4,19 +4,19 @@ import java.math.BigDecimal;
import javax.annotation.Generated;
public class ThresholdRecord {
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source field: threshold.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.id")
private Long id;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source field: threshold.indicator_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.indicator_id")
private Long indicatorId;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.value")
private BigDecimal value;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.color")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.color")
private String color;
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source Table: threshold")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source Table: threshold")
public ThresholdRecord(Long id, Long indicatorId, BigDecimal value, String color) {
this.id = id;
this.indicatorId = indicatorId;
@ -24,22 +24,22 @@ public class ThresholdRecord {
this.color = color;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source field: threshold.id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.id")
public Long getId() {
return id;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.134+02:00", comments="Source field: threshold.indicator_id")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.indicator_id")
public Long getIndicatorId() {
return indicatorId;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.value")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.value")
public BigDecimal getValue() {
return value;
}
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-04-30T14:19:49.135+02:00", comments="Source field: threshold.color")
@Generated(value="org.mybatis.generator.api.MyBatisGenerator", date="2019-05-13T14:59:57.160+02:00", comments="Source field: threshold.color")
public String getColor() {
return color;
}
@ -48,7 +48,7 @@ public class ThresholdRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table threshold
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public String toString() {
@ -68,7 +68,7 @@ public class ThresholdRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table threshold
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public boolean equals(Object that) {
@ -92,7 +92,7 @@ public class ThresholdRecord {
* This method was generated by MyBatis Generator.
* This method corresponds to the database table threshold
*
* @mbg.generated Tue Apr 30 14:19:49 CEST 2019
* @mbg.generated Mon May 13 14:59:57 CEST 2019
*/
@Override
public int hashCode() {

Some files were not shown because too many files have changed in this diff Show more