blob: d987703d4e18ade4e95a768017878467586f0def [file] [log] [blame]
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.android.tradefed.result;
/**
* Class to hold the metadata for a saved log file.
*/
public class LogFile {
private String mPath;
private String mUrl;
/**
* Construct a {@link LogFile} with filepath and URL metadata.
*
* @param path The absolute path to the saved file.
* @param url The URL where the saved file can be accessed.
*/
public LogFile(String path, String url) {
mPath = path;
mUrl = url;
}
/**
* Get the absolute path.
*/
public String getPath() {
return mPath;
}
/**
* Get the URL where the saved file can be accessed.
*/
public String getUrl() {
return mUrl;
}
}