com.microsoft.azure.servicebus.management.EntityRuntimeInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-servicebus Show documentation
Show all versions of azure-servicebus Show documentation
Java library for Azure Service Bus. Please note, a newer package com.azure:azure-messaging-servicebus for Azure Service Bus is available as of December 2020. While this package will continue to receive critical bug fixes, we strongly encourage you to upgrade. Read the migration guide at https://aka.ms/azsdk/java/migrate/sb for more details.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.azure.servicebus.management;
import java.time.Instant;
/**
* Base class for runtime information for entities
*/
public abstract class EntityRuntimeInfo {
private MessageCountDetails messageCountDetails;
private Instant createdAt;
private Instant updatedAt;
private Instant accessedAt;
String path;
/**
* @return The path of the entity.
*/
public String getPath() {
return path;
}
/**
* @return Message count details of the sub-queues of the entity.
*/
public MessageCountDetails getMessageCountDetails() {
return messageCountDetails;
}
void setMessageCountDetails(MessageCountDetails messageCountDetails) {
this.messageCountDetails = messageCountDetails;
}
/**
* @return The date-time when entity was created.
*/
public Instant getCreatedAt() {
return createdAt;
}
void setCreatedAt(Instant createdAt) {
this.createdAt = createdAt;
}
/**
* @return The date-time when the entity was updated
*/
public Instant getUpdatedAt() {
return updatedAt;
}
void setUpdatedAt(Instant updatedAt) {
this.updatedAt = updatedAt;
}
/**
* @return The date-time when the entity was last accessed.
*/
public Instant getAccessedAt() {
return accessedAt;
}
void setAccessedAt(Instant accessedAt) {
this.accessedAt = accessedAt;
}
}