All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.iovation.launchkey.sdk.integration.entities.DeviceEntity Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
/**
 * Copyright 2017 iovation, Inc.
 * 

* Licensed under the MIT License. * You may not use this file except in compliance with the License. * A copy of the License is located in the "LICENSE.txt" file accompanying * this file. This file is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.iovation.launchkey.sdk.integration.entities; import java.util.Date; public class DeviceEntity { private final String id; private final String name; private final int status; private final boolean active; private final String type; private final Date created; private final Date updated; public DeviceEntity(String id, String name, int status, boolean active, String type, Date created, Date updated) { this.id = id; this.name = name; this.status = status; this.active = active; this.type = type; this.created = created; this.updated = updated; } public String getId() { return id; } public String getName() { return name; } public int getStatus() { return status; } public boolean isActive() { return active; } public String getType() { return type; } public Date getCreated() { return created; } public Date getUpdated() { return updated; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy