package org.simantics.modeling.adapters; import org.simantics.db.Resource; public class ChangeInformationProperty { public static enum ChangeInformationPropertyType { CREATEDBY("Author"),CREATEDAT("Created At"),MODIFIEDBY("Last Modified By"),MODIFIEDAT("Last Modified At"); final public String label; ChangeInformationPropertyType(String label) { this.label = label; } } public final Resource resource; public final ChangeInformationPropertyType type; public ChangeInformationProperty(ChangeInformationPropertyType type, Resource resource) { this.type = type; this.resource = resource; } }