
com.draagon.meta.key.PrimaryKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metaobjects-metadata Show documentation
Show all versions of metaobjects-metadata Show documentation
MetaObjects for Model-driven development - MetaData Libraries
The newest version!
package com.draagon.meta.key;
public class PrimaryKey extends MetaKey {
public final static String SUBTYPE = "primary";
public final static String NAME = "primary";
public PrimaryKey() {
super(SUBTYPE, NAME);
}
@Override
public ObjectKey getObjectKey(Object o) {
return getObjectKeyForKeyFields( getDeclaringObject(), KeyTypes.PRIMARY, getKeyFields(), o );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy