![JAR search and dependency download from the Maven repository](/logo.png)
com.kolibrifx.plovercrest.server.internal.TableEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plovercrest-server Show documentation
Show all versions of plovercrest-server Show documentation
Plovercrest server library.
The newest version!
/*
* Copyright (c) 2010-2017, KolibriFX AS. Licensed under the Apache License, version 2.0.
*/
package com.kolibrifx.plovercrest.server.internal;
public class TableEvent {
private final EventType type;
private final String tableName;
public TableEvent(final EventType type, final String tableName) {
this.type = type;
this.tableName = tableName;
}
public EventType getType() {
return type;
}
public String getTableName() {
return tableName;
}
@Override
public String toString() {
return "TableEvent(type=" + type + " tableName=" + tableName + ")";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy