com.evrythng.thng.resource.model.store.Operator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (c) Copyright 2014 EVRYTHNG Ltd London / Zurich
* www.evrythng.com
*/
package com.evrythng.thng.resource.model.store;
/**
* Model representation for operator.
*/
public class Operator extends AbstractUser {
private static final long serialVersionUID = 2282241536928517609L;
private OperatorStatus operatorStatus;
private String registrationCode;
public OperatorStatus getOperatorStatus() {
return operatorStatus;
}
public void setOperatorStatus(final OperatorStatus operatorStatus) {
this.operatorStatus = operatorStatus;
}
public void setRegistrationCode(final String registrationCode) {
this.registrationCode = registrationCode;
}
public String getRegistrationCode() {
return registrationCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy