001/*
002 * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 *
016 * Contributors:
017 *     Anahide Tchertchian
018 */
019package org.nuxeo.targetplatforms.jsf.actions;
020
021import static org.jboss.seam.ScopeType.EVENT;
022
023import java.util.Collections;
024import java.util.List;
025
026import org.jboss.seam.annotations.In;
027import org.jboss.seam.annotations.Name;
028import org.jboss.seam.annotations.Scope;
029import org.nuxeo.targetplatforms.api.TargetPlatformInfo;
030import org.nuxeo.targetplatforms.api.service.TargetPlatformService;
031
032/**
033 * UI actions for {@link TargetPlatformService}.
034 *
035 * @since 5.7.1
036 */
037@Scope(EVENT)
038@Name("targetPlatformActions")
039public class TargetPlatformActions {
040
041    @In(create = true)
042    protected TargetPlatformService targetPlatformService;
043
044    public List<TargetPlatformInfo> getPlatforms() {
045        List<TargetPlatformInfo> res = targetPlatformService.getAvailableTargetPlatformsInfo(null);
046        Collections.sort(res);
047        return res;
048    }
049
050}