Package com.ibm.sbt.smartcloud

Source Code of com.ibm.sbt.smartcloud.Util

package com.ibm.sbt.smartcloud;

import com.ibm.sbt.services.endpoints.Endpoint;
import com.ibm.sbt.services.endpoints.EndpointFactory;

public class Util {

    public static String getThemeUrl() {
      Endpoint endpoint = EndpointFactory.getEndpoint("smartcloud");
      return endpoint.getUrl() + "/theming/theme/css/3";
     
    }
 
    public static String getNavBarUrl() {
      Endpoint endpoint = EndpointFactory.getEndpoint("smartcloud");
      return endpoint.getUrl() + "/manage/navbar/banner/smartcloudExt?oneui=3";
    }
   
}
TOP

Related Classes of com.ibm.sbt.smartcloud.Util

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.