001    /**
002     * Implements the CFML Function getk2serverdoccount
003     */
004    package railo.runtime.functions.other;
005    
006    import railo.runtime.PageContext;
007    import railo.runtime.ext.function.Function;
008    
009    public final class GetK2ServerDocCount implements Function {
010            public static double call(PageContext pc ) {
011                    return 0;
012            }
013    }