Ejemplo n.º 1
0
        /**
         * Demonstration on fetching the list of ALPHA-GOGET Integration API Project List
         */
        public ProjectListResponse getAlphaGoProjectList()
        {
            AlphaGoProjectList  agListObj    = new AlphaGoProjectList(authorizationEntity);
            ProjectListResponse project_list = agListObj.getList();

            return(project_list);
        }
Ejemplo n.º 2
0
        /**
         * mark accepted project as done
         */
        public MarkResponse markAlphaGoProjectAsDone(String alpha_id, String flag, String request_key)
        {
            AlphaGoProjectList obj         = new AlphaGoProjectList(authorizationEntity);
            MarkResponse       objResponse = obj.markDone(alpha_id, flag, request_key);

            return(objResponse);
        }