Class UGCDetailsCallback
- java.lang.Object
-
- in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
-
- in.dragonbra.javasteam.steam.handlers.steamcloud.callback.UGCDetailsCallback
-
- All Implemented Interfaces:
ICallbackMsg
public class UGCDetailsCallback extends CallbackMsg
This callback is received in response to callingSteamCloud.requestUGCDetails(UGCHandle).
-
-
Constructor Summary
Constructors Constructor Description UGCDetailsCallback(JobID jobID, in.dragonbra.javasteam.protobufs.steamclient.SteammessagesClientserverUfs.CMsgClientUFSGetUGCDetailsResponse.Builder msg)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAppID()SteamIDgetCreator()java.lang.StringgetFileName()intgetFileSize()EResultgetResult()java.lang.StringgetUrl()-
Methods inherited from class in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
getJobID, setJobID
-
-
-
-
Constructor Detail
-
UGCDetailsCallback
public UGCDetailsCallback(JobID jobID, in.dragonbra.javasteam.protobufs.steamclient.SteammessagesClientserverUfs.CMsgClientUFSGetUGCDetailsResponse.Builder msg)
-
-
Method Detail
-
getResult
public EResult getResult()
- Returns:
- the result of the request.
-
getAppID
public int getAppID()
- Returns:
- the App ID the UGC is for.
-
getCreator
public SteamID getCreator()
- Returns:
- the SteamID of the UGC's creator.
-
getUrl
public java.lang.String getUrl()
- Returns:
- the URL that the content is located at.
-
getFileName
public java.lang.String getFileName()
- Returns:
- the name of the file.
-
getFileSize
public int getFileSize()
- Returns:
- the size of the file.
-
-