Skip to content
Snippets Groups Projects
Select Git revision
  • f7d9f7d634fcb8fe1d1297aaa12ea1331499b8d9
  • master default protected
2 results

queue.h

  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ExcursionService.java 353 B
    package com.com1028.travelagency;
    
    import java.util.List;
    
    /**
     * 
     * Interface that defines the behaviour of an Excursion Service
     * 
     * @author Mariam Cirovic
     * 
     */
    public interface ExcursionService {
    	// This method returns the list of excursions that are provided for a given city
    	public List<String> excursionList(String city);
    }