summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/impl/SimpleServiceBrand.java
blob: b0b613dce750ede6e05ea014f5f0471430f0cc67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package org.uic.barcode.ticket.api.impl;

import org.uic.barcode.ticket.api.spec.IServiceBrand;



public class SimpleServiceBrand implements IServiceBrand {

    /** The service brand. */
	protected int serviceBrand;
	   	
	/** The service brand description. */
	protected String serviceBrandDescription;
	   	
	/** The service brand abbreviation. */
	protected String serviceBrandAbbreviation;

	public int getServiceBrand() {
		return serviceBrand;
	}

	public void setServiceBrand(int serviceBrand) {
		this.serviceBrand = serviceBrand;
	}

	public String getServiceBrandDescription() {
		return serviceBrandDescription;
	}

	public void setServiceBrandDescription(String serviceBrandDescription) {
		this.serviceBrandDescription = serviceBrandDescription;
	}

	public String getServiceBrandAbbreviation() {
		return serviceBrandAbbreviation;
	}

	public void setServiceBrandAbbreviation(String serviceBrandAbbreviation) {
		this.serviceBrandAbbreviation = serviceBrandAbbreviation;
	}


}