1 package com.thoughtworks.acceptance.objects;2 3 import com.thoughtworks.acceptance.StandardObject;4 5 public class Software extends StandardObject {6 7 public String vendor;8 public String name;9 10 public Software() {11 }12 13 public Software(String vendor, String name) {14 this.vendor = vendor;15 this.name = name;16 }17 18 }19