blob: aca22939e7319b3cf5ccc758368ac65d7f804b75 [file] [log] [blame]
jimmydot3982f4f2017-05-07 14:58:24 -04001<html>
2<head><title>Test VID Properties related to MSO </title></head>
3<!-- This is a temporary test page. It will be removed from source control -->
4<body>
Ofir Sonsinoefedea12018-02-20 18:03:30 +02005<%@ page import="org.onap.portalsdk.core.util.SystemProperties" %>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +02006<%@ page import="org.onap.vid.controller.MsoController" %>
7<%@ page import="org.onap.vid.mso.rest.Request" %>
8<%@ page import="org.onap.vid.mso.rest.RequestDetails" %>
9<%@ page import="org.onap.vid.mso.rest.RelatedModel" %>
10<%@ page import="org.onap.vid.domain.mso.SubscriberInfo" %>
11<%@ page import="org.onap.vid.domain.mso.Response" %>
12<%@ page import="org.onap.vid.domain.mso.ModelInfo" %>
13<%@ page import="org.onap.vid.domain.mso.RequestInfo" %>
14<%@ page import="org.onap.vid.domain.mso.CloudConfiguration" %>
15<%@ page import="org.onap.vid.mso.MsoProperties" %>
jimmydot3982f4f2017-05-07 14:58:24 -040016<%@ page import="java.net.URI" %>
17<%@ page import="com.sun.jersey.api.client.ClientResponse" %>
18 <%
19 String url = SystemProperties.getProperty(MsoProperties.MSO_SERVER_URL);
20 String max_polls = SystemProperties.getProperty(MsoProperties.MSO_MAX_POLLS);
21 String max_polling_interval_msecs = SystemProperties.getProperty(MsoProperties.MSO_POLLING_INTERVAL_MSECS);
22 %>
23 <h2>VID properties related to MSO:</h2>
24 <h3>MSO server URL:</h3><p>"<%= url %>"</p>
25 <h3>MSO max number of polls:</h3><p>"<%= max_polls %>"</p>
26 <h3>MSO polling interval (msecs):</h3><p>"<%= max_polling_interval_msecs %>"</p>
27 <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
28</body>
29</html>