Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
import org.osoa.sca.annotations.Remotable;

@Remotable
public interface CustomerService {

    Customer[] getCustomers();

    void setCustomer(Customer customer);

    @Query(SELECT c FROM customer c WHERE c.name = '" + name$1 + "'")
    Customer queryCustomerByName(String name);

}

...