Back to project page TAQueue.
The source code is released under:
MIT License
If you think the Android project TAQueue listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.familybiz.greg.taqueue.model; /*from w w w . j av a 2 s . c o m*/ /** * Represents all the information for a TA as well as all the actions a TA can perform. * * Created by Greg Anderson */ public class TA extends User { public TA(String username, String id, String token) { super(username, id, token); } @Override public String getUserType() { return TA; } }