
com.github.gkutiel.flip.web.Key Maven / Gradle / Ivy
package com.github.gkutiel.flip.web;
public class Key {
private final String name;
private final Class type;
public Key(final String name, final Class type) {
this.name = name;
this.type = type;
}
public String name() {
return this.name;
}
Class valType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy