return pluginProperties;
}
@Override
public List<PluginProperty> getDefaultConfiguration() {
PluginProperty width = new PluginProperty(WIDTH_PROPERTY, INT, "100");
PluginProperty height = new PluginProperty(HEIGHT_PROPERTY, INT, "50");
PluginProperty length = new PluginProperty(LENGTH_PROPERTY, INT, "4");
PluginProperty possibleSymbols = new PluginProperty(POSSIBLE_SYMBOLS_PROPERTY, STRING, "0123456789");
return Arrays.asList(width, height, length, possibleSymbols);
}