package com.nci.slt.epi.admin.test;

public class TestService {
    
    private static Obj[] ALL = new Obj[] {
            new Obj( "one" ),
            new Obj( "two" ),
            new Obj( "three" )
    };

    public TestService() {
        super();
    }
    
    public Obj[] getObjs() {
        return ALL;
    }
    
    public Obj getObj( int i ) {
        return ALL[i];
    }

}
