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

org.opendolphin.demo.crud.PositionConstants.groovy Maven / Gradle / Ivy

Go to download

Dolphin is a free open-source library that bridges the worlds of enterprise Java and desktop Java. It uses presentation models to bind client-side views to server-side actions.

There is a newer version: 1.0-RC3
Show newest version
package org.opendolphin.demo.crud

class PositionConstants {

    static class TYPE {
        public static final String POSITION         = PositionConstants.unique 'type'
    }

    static class ATT {
        public static final String PORTFOLIO_ID     = 'portfolioId'
        public static final String INSTRUMENT       = 'instrument'
        public static final String WEIGHT           = 'weight'
    }

    static class CMD {
        public static final String PULL             = PositionConstants.unique 'pull'
    }

    static String unique(String s) { PositionConstants.class.name + '.'+ s }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy