掲示板

ProgressTracker in 6.2

thumbnail
7年前 に Alberto Martínez によって更新されました。

ProgressTracker in 6.2

New Member 投稿: 23 参加年月日: 15/12/04 最新の投稿
Hi!

The class com.liferay.portal.kernel.util.ProgressTracker in 6.1 have
setProgress(int progress)
method, but in 6.2 version this method isn´t
I have find two method but I don´t know which is the correct to migration

	setPercent(int percent) 
        setStatus(int status) 


Thanks in advance
thumbnail
7年前 に Juan Gonzalez によって更新されました。

RE: ProgressTracker in 6.2 (回答)

Liferay Legend 投稿: 3089 参加年月日: 08/10/28 最新の投稿
Alberto Martínez:
Hi!

The class com.liferay.portal.kernel.util.ProgressTracker in 6.1 have
setProgress(int progress)
method, but in 6.2 version this method isn´t
I have find two method but I don´t know which is the correct to migration

	setPercent(int percent) 
        setStatus(int status) 


Thanks in advance


Take a look possible values for status:

https://github.com/liferay/liferay-portal/blob/6.2.x/portal-service/src/com/liferay/portal/kernel/util/ProgressStatusConstants.java#L22-L28

And I think older setProgress should be equivalent to new setPercent.