
com.microsoft.applicationinsights.internal.schemav2.PageViewData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of applicationinsights-core Show documentation
Show all versions of applicationinsights-core Show documentation
This is the core module of Microsoft Application Insights Java SDK
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.applicationinsights.internal.schemav2;
import java.net.URI;
public class PageViewData extends EventData {
private URI uri;
private long duration = 0;
public PageViewData() {}
public URI getUri() {
return uri;
}
public void setUri(URI uri) {
this.uri = uri;
}
public long getDuration() {
return duration;
}
public void setDuration(long duration) {
this.duration = duration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy