All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.draagon.meta.key.PrimaryKey Maven / Gradle / Ivy

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