summaryrefslogblamecommitdiffstats
path: root/src/org/uic/ticket/api/impl/SimpleServiceBrand.java
blob: 7b1e0cc0106036334fe662538a1711c57e366f61 (plain) (tree)










































                                                                                   
package org.uic.ticket.api.impl;

import org.uic.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;
	}


}