2023-09-17 22:13:42 +03:00
|
|
|
package GlobalData.Credentials;
|
2023-09-29 21:46:08 +03:00
|
|
|
import Common.Constants.Constants;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Common.Database.iDBObject;
|
|
|
|
|
import com.sun.org.glassfish.gmbal.Description;
|
|
|
|
|
public class Credentials extends iDBObject {
|
|
|
|
|
@Description("DEFAULT -1")
|
2023-09-29 21:46:08 +03:00
|
|
|
public int machine_id = Constants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
@Description("DEFAULT -1")
|
2023-09-29 21:46:08 +03:00
|
|
|
public int user_id = Constants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
@Description("DEFAULT -1")
|
2023-09-29 21:46:08 +03:00
|
|
|
public int compiler_id = Constants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
@Description("DEFAULT -1")
|
2023-09-29 21:46:08 +03:00
|
|
|
public int makefile_id = Constants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
@Description("DEFAULT -1")
|
2023-09-29 21:46:08 +03:00
|
|
|
public int runconfiguration_id = Constants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
@Description("DEFAULT -1")
|
2023-09-29 21:46:08 +03:00
|
|
|
public int remotesapfor_id = Constants.Nan;
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|