Package org.danann.cernunnos

Examples of org.danann.cernunnos.SimpleFormula


    public static final Reagent ELEMENT = new SimpleReagent("ELEMENT", "descendant-or-self::text()",
                    ReagentType.PHRASE, Element.class, "Element whose text is a member name.");

    public Formula getFormula() {
        Reagent[] reagents = new Reagent[] {ELEMENT};
        return new SimpleFormula(GetMemberIsGroupPhrase.class, reagents);
    }
View Full Code Here


    public static final Reagent DB_VALUE = new SimpleReagent("DB_VALUE", "descendant-or-self::text()",
                    ReagentType.PHRASE, String.class, "Value of the TYPE field from the DB.");

    public Formula getFormula() {
        Reagent[] reagents = new Reagent[] {DB_VALUE};
        return new SimpleFormula(FolderTypePhrase.class, reagents);
    }
View Full Code Here

    public static final Reagent ELEMENT = new SimpleReagent("ELEMENT", "descendant-or-self::text()",
                    ReagentType.PHRASE, Element.class, "Element whose text is a member name.");

    public Formula getFormula() {
        Reagent[] reagents = new Reagent[] {ELEMENT};
        return new SimpleFormula(GetMemberKeyPhrase.class, reagents);
    }
View Full Code Here

                    ReagentType.PHRASE, String.class, "A String that expresses a java.sql.Timestamp " +
                    "in 'yyyy-MM-dd HH:mm:ss.SSS' format.  A null value generates a null response.");

    public Formula getFormula() {
        Reagent[] reagents = new Reagent[] {TIMESTAMP};
        return new SimpleFormula(getClass(), reagents);
    }
View Full Code Here

    public static final Reagent ELEMENT = new SimpleReagent("ELEMENT", "descendant-or-self::text()", ReagentType.PHRASE,
                                            Element.class, "Element representing a default user or null.");

    public Formula getFormula() {
        Reagent[] reagents = new Reagent[] {ELEMENT};
        return new SimpleFormula(DefaultUsernamePhrase.class, reagents);
    }
View Full Code Here

    public static final Reagent ELEMENT = new SimpleReagent("ELEMENT", "descendant-or-self::text()", ReagentType.PHRASE,
                                            Element.class, "Element representing either a principal or a target.");

    public Formula getFormula() {
        Reagent[] reagents = new Reagent[] {ELEMENT};
        return new SimpleFormula(GroupKeyOrLiteralPhrase.class, reagents);
    }
View Full Code Here

    public static final Reagent ELEMENT = new SimpleReagent("ELEMENT", "descendant-or-self::text()",
                    ReagentType.PHRASE, Element.class, "Element whose text is a member name.");

    public Formula getFormula() {
        Reagent[] reagents = new Reagent[] {ELEMENT};
        return new SimpleFormula(GetMemberServicePhrase.class, reagents);
    }
View Full Code Here

    /* (non-Javadoc)
     * @see org.danann.cernunnos.Bootstrappable#getFormula()
     */
    public Formula getFormula() {
        return new SimpleFormula(SequenceGeneratorPhrase.class, new Reagent[] { SEQ_NAME });
    }
View Full Code Here

    /* (non-Javadoc)
     * @see org.danann.cernunnos.Bootstrappable#getFormula()
     */
    public Formula getFormula() {
        return new SimpleFormula(GenerateEntityFileNameTask.class, new Reagent[] { ENTITY_ELEMENT, LAYOUT_STORE });
    }
View Full Code Here

TOP

Related Classes of org.danann.cernunnos.SimpleFormula

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.