當前位置: 首頁>>代碼示例>>Java>>正文


Java AbstractProject.save方法代碼示例

本文整理匯總了Java中hudson.model.AbstractProject.save方法的典型用法代碼示例。如果您正苦於以下問題:Java AbstractProject.save方法的具體用法?Java AbstractProject.save怎麽用?Java AbstractProject.save使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在hudson.model.AbstractProject的用法示例。


在下文中一共展示了AbstractProject.save方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: jobLoaded

import hudson.model.AbstractProject; //導入方法依賴的package包/類
@Initializer(before = InitMilestone.COMPLETED, after = InitMilestone.JOB_LOADED)
public static void jobLoaded() throws IOException
{
	m_logger.fine("Initialization milestone: All jobs have been loaded"); //$NON-NLS-1$
	Jenkins jenkins = Jenkins.getInstance();
	for (AbstractProject<?, ?> project : jenkins.getAllItems(AbstractProject.class))
	{
		try
		{
			SCM scmConfig = project.getScm();
			if (scmConfig instanceof AbstractConfiguration && ((AbstractConfiguration) scmConfig).isMigrated())
			{
				project.save();

				m_logger.info(String.format(
								"Project %s has been migrated.", //$NON-NLS-1$
								project.getFullName()));
			}
		}
		catch (IOException e)
		{
			m_logger.log(Level.SEVERE, String.format("Failed to upgrade job %s", project.getFullName()), e); //$NON-NLS-1$
		}
	}
}
 
開發者ID:jenkinsci,項目名稱:compuware-scm-downloader-plugin,代碼行數:26,代碼來源:AbstractConfiguration.java

示例2: onLoaded

import hudson.model.AbstractProject; //導入方法依賴的package包/類
@SuppressWarnings("deprecation")
@Override
public void onLoaded() {
	logger.info("Starting Settings Migration Process");
	for (AbstractProject<?, ?> p : Jenkins.getInstance().getAllItems(AbstractProject.class)) {
		logger.info("processing Job: " + p.getName());

		final MattermostJobProperty mattermostJobProperty = p.getProperty(MattermostJobProperty.class);

		if (mattermostJobProperty == null) {
			logger.info(String
					.format("Configuration is already up to date for \"%s\", skipping migration",
							p.getName()));
			continue;
		}

		MattermostNotifier mattermostNotifier = p.getPublishersList().get(MattermostNotifier.class);

		if (mattermostNotifier == null) {
			logger.info(String
					.format("Configuration does not have a notifier for \"%s\", not migrating settings",
							p.getName()));
		} else {

			//map settings
			if (StringUtils.isBlank(mattermostNotifier.endpoint)) {
				mattermostNotifier.endpoint = mattermostJobProperty.getEndpoint();
			}
			if (StringUtils.isBlank(mattermostNotifier.icon)) {
				mattermostNotifier.icon = mattermostJobProperty.getIcon();
			}
			if (StringUtils.isBlank(mattermostNotifier.room)) {
				mattermostNotifier.room = mattermostJobProperty.getRoom();
			}

			mattermostNotifier.startNotification = mattermostJobProperty.getStartNotification();

			mattermostNotifier.notifyAborted = mattermostJobProperty.getNotifyAborted();
			mattermostNotifier.notifyFailure = mattermostJobProperty.getNotifyFailure();
			mattermostNotifier.notifyNotBuilt = mattermostJobProperty.getNotifyNotBuilt();
			mattermostNotifier.notifySuccess = mattermostJobProperty.getNotifySuccess();
			mattermostNotifier.notifyUnstable = mattermostJobProperty.getNotifyUnstable();
			mattermostNotifier.notifyBackToNormal = mattermostJobProperty.getNotifyBackToNormal();
			mattermostNotifier.notifyRepeatedFailure = mattermostJobProperty.getNotifyRepeatedFailure();

			mattermostNotifier.includeTestSummary = mattermostJobProperty.includeTestSummary();
			mattermostNotifier.commitInfoChoice = mattermostJobProperty.getShowCommitList() ? CommitInfoChoice.AUTHORS_AND_TITLES : CommitInfoChoice.NONE;
			mattermostNotifier.includeCustomAttachmentMessage = mattermostJobProperty.includeCustomAttachmentMessage();
			mattermostNotifier.customAttachmentMessage = mattermostJobProperty.getCustomAttachmentMessage();
			mattermostNotifier.includeCustomMessage = mattermostJobProperty.includeCustomMessage();
			mattermostNotifier.customMessage = mattermostJobProperty.getCustomMessage();
		}

		try {
			//property section is not used anymore - remove
			p.removeProperty(MattermostJobProperty.class);
			p.save();
			logger.info("Configuration updated successfully");
		} catch (IOException e) {
			logger.log(Level.SEVERE, e.getMessage(), e);
		}
	}
}
 
開發者ID:jovandeginste,項目名稱:jenkins-mattermost-plugin,代碼行數:64,代碼來源:MattermostNotifier.java


注:本文中的hudson.model.AbstractProject.save方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。