├── .gitignore
├── README.md
├── SUMMARY.md
├── docs
├── Build Real-Time Web App with SSE.md
├── Custom ResourceConfig.md
├── Encoding Format.md
├── Exploring the Newly Created Project.md
├── File Upload and Download.md
├── Getting Started.md
├── Handle JSON and XML.md
├── Java SE Deployment Environments.md
├── Parameter Annotations.md
├── REST Overview.md
├── Rapid Development.md
├── Ref.md
├── Simulation of CURD.md
├── jersey-spring-shiro.md
└── jersey-webapp.md
├── images
├── encoding-format-01.jpg
├── encoding-format-02.jpg
├── file-up-down-01.jpg
├── file-up-down-02.jpg
├── file-up-down-03.jpg
├── file-up-down-04.jpg
├── file-up-down-05.jpg
├── file-up-down-06.jpg
├── first-rest-app-00.jpg
├── first-rest-app-01.jpg
├── first-rest-app-02.jpg
├── handle-json-xml-01.jpg
├── handle-json-xml-02.jpg
├── jersey-webapp-01.jpg
├── jersey-webapp-02.jpg
├── jersey-webapp-03.jpg
├── jersey-webapp-04.jpg
├── jersey-webapp-05.jpg
├── jersey-webapp-06.jpg
├── jersey-webapp-07.jpg
├── jersey-webapp-08.jpg
├── parameter-annotations-01.jpg
├── rapid-dev-01.jpg
├── rapid-dev-02.jpg
├── rapid-dev-03.jpg
├── rapid-dev-04.jpg
├── rapid-dev-05.jpg
├── rapid-dev-06.jpg
├── simulation-curd-01.jpg
├── simulation-curd-02.jpg
├── simulation-curd-03.jpg
├── simulation-curd-04.jpg
├── simulation-curd-05.jpg
├── simulation-curd-06.jpg
├── simulation-curd-07.jpg
├── sse-real-time-web-00.jpg
├── sse-real-time-web-01.jpg
├── sse-real-time-web-02.jpg
├── sse-real-time-web-03.jpg
├── sse-real-time-web-04.jpg
├── sse-real-time-web-05.jpg
├── sse-real-time-web-06.jpg
├── sse-real-time-web-07.jpg
├── sse-real-time-web-08.jpg
├── sse-real-time-web-09.jpg
├── sse-real-time-web-10.jpg
└── sse-real-time-web-11.jpg
└── samples
├── custom-resourceconfig
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ └── resource
│ │ └── MyResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── encoding-format
├── .gitignore
├── .settings
│ ├── .jsdtscope
│ ├── org.eclipse.core.resources.prefs
│ ├── org.eclipse.jdt.core.prefs
│ ├── org.eclipse.m2e.core.prefs
│ ├── org.eclipse.wst.common.component
│ ├── org.eclipse.wst.common.project.facet.core.xml
│ ├── org.eclipse.wst.jsdt.ui.superType.container
│ ├── org.eclipse.wst.jsdt.ui.superType.name
│ └── org.eclipse.wst.validation.prefs
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── bean
│ │ └── MyBean.java
│ │ └── resource
│ │ └── MyResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── file-upload-down
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── bean
│ │ ├── MyBean.java
│ │ └── UserBean.java
│ │ └── resource
│ │ ├── FileResource.java
│ │ ├── MyResource.java
│ │ └── UserResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── handle-json-xml
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── bean
│ │ └── MyBean.java
│ │ └── resource
│ │ └── MyResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── javase-rest-jetty
├── .gitignore
├── pom.xml
├── src
│ └── main
│ │ ├── java
│ │ └── com
│ │ │ └── waylau
│ │ │ └── rest
│ │ │ ├── App.java
│ │ │ ├── RestApplication.java
│ │ │ ├── bean
│ │ │ └── MyBean.java
│ │ │ └── resource
│ │ │ └── MyResource.java
│ │ └── webapp
│ │ ├── WEB-INF
│ │ └── web.xml
│ │ ├── css
│ │ ├── bootstrap-table.min.css
│ │ └── bootstrap.min.css
│ │ ├── favicon.ico
│ │ ├── flogo.png
│ │ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ │ ├── index.html
│ │ ├── js
│ │ ├── bootstrap-treeview.js
│ │ ├── bootstrap.min.js
│ │ ├── highcharts.js
│ │ ├── ie-emulation-modes-warning.js
│ │ ├── jquery-1.11.2.min.js
│ │ └── monitor.min.js
│ │ ├── runtime.html
│ │ └── thread.html
└── webapp
│ ├── WEB-INF
│ └── web.xml
│ ├── css
│ ├── bootstrap-table.min.css
│ └── bootstrap.min.css
│ ├── favicon.ico
│ ├── flogo.png
│ ├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
│ ├── index.html
│ ├── js
│ ├── bootstrap-treeview.js
│ ├── bootstrap.min.js
│ ├── highcharts.js
│ ├── ie-emulation-modes-warning.js
│ ├── jquery-1.11.2.min.js
│ └── monitor.min.js
│ ├── runtime.html
│ └── thread.html
├── javase-rest
├── .gitignore
├── .settings
│ ├── org.eclipse.core.resources.prefs
│ ├── org.eclipse.jdt.core.prefs
│ └── org.eclipse.m2e.core.prefs
├── pom.xml
└── src
│ └── main
│ └── java
│ └── com
│ └── waylau
│ └── rest
│ ├── App.java
│ ├── RestApplication.java
│ ├── bean
│ └── MyBean.java
│ └── resource
│ └── MyResource.java
├── jersey-easyui
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── entity
│ │ └── User.java
│ │ └── resource
│ │ └── HelloResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ ├── data
│ └── left-menu.json
│ ├── index.html
│ ├── index.jsp
│ ├── scripts
│ ├── jquery.serializeObject.js
│ ├── main.js
│ └── vendor
│ │ ├── jquery.cookie.js
│ │ ├── jquery.easyui.min.js
│ │ ├── jquery.min.js
│ │ └── js-verson
│ ├── styles
│ └── main.css
│ └── themes
│ ├── black
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── bootstrap
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── color.css
│ ├── default
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── gray
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── icon.css
│ ├── icons
│ ├── back.png
│ ├── blank.gif
│ ├── cancel.png
│ ├── clear.png
│ ├── cut.png
│ ├── edit_add.png
│ ├── edit_remove.png
│ ├── filesave.png
│ ├── filter.png
│ ├── help.png
│ ├── large_chart.png
│ ├── large_clipart.png
│ ├── large_picture.png
│ ├── large_shapes.png
│ ├── large_smartart.png
│ ├── lock.png
│ ├── man.png
│ ├── mini_add.png
│ ├── mini_edit.png
│ ├── mini_refresh.png
│ ├── no.png
│ ├── ok.png
│ ├── pencil.png
│ ├── print.png
│ ├── redo.png
│ ├── reload.png
│ ├── search.png
│ ├── sum.png
│ ├── tip.png
│ └── undo.png
│ ├── metro-blue
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── metro-gray
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── metro-green
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── metro-orange
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ ├── metro-red
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
│ └── metro
│ ├── accordion.css
│ ├── calendar.css
│ ├── combo.css
│ ├── combobox.css
│ ├── datagrid.css
│ ├── datebox.css
│ ├── dialog.css
│ ├── easyui.css
│ ├── filebox.css
│ ├── images
│ ├── accordion_arrows.png
│ ├── blank.gif
│ ├── calendar_arrows.png
│ ├── combo_arrow.png
│ ├── datagrid_icons.png
│ ├── datebox_arrow.png
│ ├── layout_arrows.png
│ ├── linkbutton_bg.png
│ ├── loading.gif
│ ├── menu_arrows.png
│ ├── messager_icons.png
│ ├── pagination_icons.png
│ ├── panel_tools.png
│ ├── searchbox_button.png
│ ├── slider_handle.png
│ ├── spinner_arrows.png
│ ├── tabs_icons.png
│ ├── tree_icons.png
│ └── validatebox_warning.png
│ ├── layout.css
│ ├── linkbutton.css
│ ├── menu.css
│ ├── menubutton.css
│ ├── messager.css
│ ├── numberbox.css
│ ├── pagination.css
│ ├── panel.css
│ ├── progressbar.css
│ ├── propertygrid.css
│ ├── searchbox.css
│ ├── slider.css
│ ├── spinner.css
│ ├── splitbutton.css
│ ├── tabs.css
│ ├── textbox.css
│ ├── tooltip.css
│ ├── tree.css
│ ├── validatebox.css
│ └── window.css
├── jersey-spring-shiro
├── .gitignore
├── WebContent
│ └── META-INF
│ │ └── MANIFEST.MF
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── entity
│ │ ├── Response.java
│ │ └── User.java
│ │ ├── resource
│ │ ├── HelloResource.java
│ │ └── LoginResource.java
│ │ ├── shiro
│ │ ├── MyAuthenticationFilter.java
│ │ └── ShiroDbRealm.java
│ │ └── util
│ │ ├── Encodes.java
│ │ └── Exceptions.java
│ ├── resources
│ ├── applicationContext-shiro.xml
│ └── applicationContext.xml
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ ├── admin.html
│ ├── apps
│ ├── cookie
│ │ ├── index.html
│ │ └── scripts
│ │ │ └── cookie.js
│ ├── datagrid
│ │ └── index.html
│ ├── desktop
│ │ ├── index.html
│ │ └── scripts
│ │ │ └── desktop.js
│ ├── help
│ │ └── index.html
│ ├── iframe
│ │ └── index.html
│ ├── message
│ │ └── index.html
│ ├── msg
│ │ └── index.html
│ ├── personal
│ │ └── index.html
│ ├── progress
│ │ └── index.html
│ ├── theme
│ │ ├── images
│ │ │ ├── theme-metro-blue_90_50.png
│ │ │ ├── theme-metro-gray_90_50.png
│ │ │ ├── theme-metro-green_90_50.png
│ │ │ ├── theme-metro-orange_90_50.png
│ │ │ └── theme-metro-red_90_50.png
│ │ └── index.html
│ ├── userMgt
│ │ ├── index.html
│ │ └── scripts
│ │ │ └── userMgt.js
│ └── video
│ │ └── index.html
│ ├── data
│ └── left-menu.json
│ ├── home.html
│ ├── images
│ ├── left-menu
│ │ ├── edit_48.png
│ │ ├── music_48.png
│ │ ├── remove_48.png
│ │ ├── user_48.png
│ │ └── vedio_48.png
│ ├── logo.png
│ └── theme
│ │ ├── theme-metro-blue_90_50.png
│ │ ├── theme-metro-gray_90_50.png
│ │ ├── theme-metro-green_90_50.png
│ │ ├── theme-metro-orange_90_50.png
│ │ └── theme-metro-red_90_50.png
│ ├── index.jsp
│ ├── login.html
│ ├── scripts
│ ├── date-util.js
│ ├── easyui-theme-change.js
│ ├── jquery-loading.js
│ ├── login.js
│ ├── main.js
│ ├── msg.js
│ └── vendor
│ │ ├── jquery.cookie.js
│ │ ├── jquery.easyui.min.js
│ │ ├── jquery.min.js
│ │ └── js-verson
│ ├── styles
│ └── main.css
│ ├── themes
│ ├── black
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── bootstrap
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── color.css
│ ├── default
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── gray
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── icon.css
│ ├── icons
│ │ ├── back.png
│ │ ├── blank.gif
│ │ ├── cancel.png
│ │ ├── clear.png
│ │ ├── cut.png
│ │ ├── edit_add.png
│ │ ├── edit_remove.png
│ │ ├── filesave.png
│ │ ├── filter.png
│ │ ├── help.png
│ │ ├── large_chart.png
│ │ ├── large_clipart.png
│ │ ├── large_picture.png
│ │ ├── large_shapes.png
│ │ ├── large_smartart.png
│ │ ├── lock.png
│ │ ├── man.png
│ │ ├── mini_add.png
│ │ ├── mini_edit.png
│ │ ├── mini_refresh.png
│ │ ├── no.png
│ │ ├── ok.png
│ │ ├── pencil.png
│ │ ├── print.png
│ │ ├── redo.png
│ │ ├── reload.png
│ │ ├── search.png
│ │ ├── sum.png
│ │ ├── tip.png
│ │ └── undo.png
│ ├── metro-blue
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── metro-gray
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── metro-green
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── metro-orange
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ ├── metro-red
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ │ ├── accordion_arrows.png
│ │ │ ├── blank.gif
│ │ │ ├── calendar_arrows.png
│ │ │ ├── combo_arrow.png
│ │ │ ├── datagrid_icons.png
│ │ │ ├── datebox_arrow.png
│ │ │ ├── layout_arrows.png
│ │ │ ├── linkbutton_bg.png
│ │ │ ├── loading.gif
│ │ │ ├── menu_arrows.png
│ │ │ ├── messager_icons.png
│ │ │ ├── pagination_icons.png
│ │ │ ├── panel_tools.png
│ │ │ ├── searchbox_button.png
│ │ │ ├── slider_handle.png
│ │ │ ├── spinner_arrows.png
│ │ │ ├── tabs_icons.png
│ │ │ ├── tree_icons.png
│ │ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ └── metro
│ │ ├── accordion.css
│ │ ├── calendar.css
│ │ ├── combo.css
│ │ ├── combobox.css
│ │ ├── datagrid.css
│ │ ├── datebox.css
│ │ ├── dialog.css
│ │ ├── easyui.css
│ │ ├── filebox.css
│ │ ├── images
│ │ ├── accordion_arrows.png
│ │ ├── blank.gif
│ │ ├── calendar_arrows.png
│ │ ├── combo_arrow.png
│ │ ├── datagrid_icons.png
│ │ ├── datebox_arrow.png
│ │ ├── layout_arrows.png
│ │ ├── linkbutton_bg.png
│ │ ├── loading.gif
│ │ ├── menu_arrows.png
│ │ ├── messager_icons.png
│ │ ├── pagination_icons.png
│ │ ├── panel_tools.png
│ │ ├── searchbox_button.png
│ │ ├── slider_handle.png
│ │ ├── spinner_arrows.png
│ │ ├── tabs_icons.png
│ │ ├── tree_icons.png
│ │ └── validatebox_warning.png
│ │ ├── layout.css
│ │ ├── linkbutton.css
│ │ ├── menu.css
│ │ ├── menubutton.css
│ │ ├── messager.css
│ │ ├── numberbox.css
│ │ ├── pagination.css
│ │ ├── panel.css
│ │ ├── progressbar.css
│ │ ├── propertygrid.css
│ │ ├── searchbox.css
│ │ ├── slider.css
│ │ ├── spinner.css
│ │ ├── splitbutton.css
│ │ ├── tabs.css
│ │ ├── textbox.css
│ │ ├── tooltip.css
│ │ ├── tree.css
│ │ ├── validatebox.css
│ │ └── window.css
│ └── unauthorized.html
├── jersey-webapp
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── entity
│ │ ├── ResposeBean.java
│ │ └── User.java
│ │ └── resource
│ │ └── HelloResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── parameter-annotations
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── bean
│ │ ├── MyBean.java
│ │ └── UserBean.java
│ │ └── resource
│ │ ├── MyResource.java
│ │ └── UserResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── servlet-container
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ └── MyResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── simple-service-webapp
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ └── MyResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
├── simulation-curd
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── java
│ └── com
│ │ └── waylau
│ │ └── rest
│ │ ├── RestApplication.java
│ │ ├── bean
│ │ ├── MyBean.java
│ │ └── UserBean.java
│ │ └── resource
│ │ ├── MyResource.java
│ │ └── UserResource.java
│ └── webapp
│ ├── WEB-INF
│ └── web.xml
│ └── index.jsp
└── sse-real-time-web
├── .gitignore
├── pom.xml
└── src
└── main
├── java
└── com
│ └── waylau
│ └── rest
│ ├── RestApplication.java
│ ├── bean
│ └── Alarm.java
│ ├── filter
│ └── CrossDomainFilter.java
│ └── resource
│ ├── AlarmResource.java
│ ├── SseChatResource.java
│ └── SseResource.java
└── webapp
├── WEB-INF
└── web.xml
├── index.html
├── scripts
├── sse_real_time_broadcast.js
├── sse_real_time_cors.js
├── sse_real_time_cors_alarm.js
├── sse_real_time_pub.js
└── vendor
│ └── eventsource.js
├── sse_broadcast.html
├── sse_cors.html
├── sse_cors_alarm.html
└── sse_ie.html
/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
--------------------------------------------------------------------------------
/images/encoding-format-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/encoding-format-01.jpg
--------------------------------------------------------------------------------
/images/encoding-format-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/encoding-format-02.jpg
--------------------------------------------------------------------------------
/images/file-up-down-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/file-up-down-01.jpg
--------------------------------------------------------------------------------
/images/file-up-down-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/file-up-down-02.jpg
--------------------------------------------------------------------------------
/images/file-up-down-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/file-up-down-03.jpg
--------------------------------------------------------------------------------
/images/file-up-down-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/file-up-down-04.jpg
--------------------------------------------------------------------------------
/images/file-up-down-05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/file-up-down-05.jpg
--------------------------------------------------------------------------------
/images/file-up-down-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/file-up-down-06.jpg
--------------------------------------------------------------------------------
/images/first-rest-app-00.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/first-rest-app-00.jpg
--------------------------------------------------------------------------------
/images/first-rest-app-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/first-rest-app-01.jpg
--------------------------------------------------------------------------------
/images/first-rest-app-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/first-rest-app-02.jpg
--------------------------------------------------------------------------------
/images/handle-json-xml-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/handle-json-xml-01.jpg
--------------------------------------------------------------------------------
/images/handle-json-xml-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/handle-json-xml-02.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-01.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-02.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-03.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-04.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-05.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-06.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-07.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-07.jpg
--------------------------------------------------------------------------------
/images/jersey-webapp-08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/jersey-webapp-08.jpg
--------------------------------------------------------------------------------
/images/parameter-annotations-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/parameter-annotations-01.jpg
--------------------------------------------------------------------------------
/images/rapid-dev-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/rapid-dev-01.jpg
--------------------------------------------------------------------------------
/images/rapid-dev-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/rapid-dev-02.jpg
--------------------------------------------------------------------------------
/images/rapid-dev-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/rapid-dev-03.jpg
--------------------------------------------------------------------------------
/images/rapid-dev-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/rapid-dev-04.jpg
--------------------------------------------------------------------------------
/images/rapid-dev-05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/rapid-dev-05.jpg
--------------------------------------------------------------------------------
/images/rapid-dev-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/rapid-dev-06.jpg
--------------------------------------------------------------------------------
/images/simulation-curd-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/simulation-curd-01.jpg
--------------------------------------------------------------------------------
/images/simulation-curd-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/simulation-curd-02.jpg
--------------------------------------------------------------------------------
/images/simulation-curd-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/simulation-curd-03.jpg
--------------------------------------------------------------------------------
/images/simulation-curd-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/simulation-curd-04.jpg
--------------------------------------------------------------------------------
/images/simulation-curd-05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/simulation-curd-05.jpg
--------------------------------------------------------------------------------
/images/simulation-curd-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/simulation-curd-06.jpg
--------------------------------------------------------------------------------
/images/simulation-curd-07.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/simulation-curd-07.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-00.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-00.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-01.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-02.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-03.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-03.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-04.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-04.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-05.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-05.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-06.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-06.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-07.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-07.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-08.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-08.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-09.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-09.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-10.jpg
--------------------------------------------------------------------------------
/images/sse-real-time-web-11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/images/sse-real-time-web-11.jpg
--------------------------------------------------------------------------------
/samples/custom-resourceconfig/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
6 | _book
7 |
--------------------------------------------------------------------------------
/samples/custom-resourceconfig/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Jersey RESTful Web Application!
4 | Jersey resource
5 |
Visit www.waylau.com
6 | for more information on Jersey!
7 |
8 |
9 |
--------------------------------------------------------------------------------
/samples/encoding-format/.gitignore:
--------------------------------------------------------------------------------
1 | /build/
2 | /target/
3 |
--------------------------------------------------------------------------------
/samples/encoding-format/.settings/org.eclipse.core.resources.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | encoding/=UTF-8
3 |
--------------------------------------------------------------------------------
/samples/encoding-format/.settings/org.eclipse.m2e.core.prefs:
--------------------------------------------------------------------------------
1 | activeProfiles=
2 | eclipse.preferences.version=1
3 | resolveWorkspaceProjects=true
4 | version=1
5 |
--------------------------------------------------------------------------------
/samples/encoding-format/.settings/org.eclipse.wst.common.project.facet.core.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/encoding-format/.settings/org.eclipse.wst.jsdt.ui.superType.container:
--------------------------------------------------------------------------------
1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary
--------------------------------------------------------------------------------
/samples/encoding-format/.settings/org.eclipse.wst.jsdt.ui.superType.name:
--------------------------------------------------------------------------------
1 | Window
--------------------------------------------------------------------------------
/samples/encoding-format/.settings/org.eclipse.wst.validation.prefs:
--------------------------------------------------------------------------------
1 | disabled=06target
2 | eclipse.preferences.version=1
3 |
--------------------------------------------------------------------------------
/samples/file-upload-down/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
6 | _book
7 |
--------------------------------------------------------------------------------
/samples/handle-json-xml/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
6 | _book
7 |
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/src/main/webapp/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/src/main/webapp/favicon.ico
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/src/main/webapp/flogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/src/main/webapp/flogo.png
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/src/main/webapp/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/src/main/webapp/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/src/main/webapp/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/src/main/webapp/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/src/main/webapp/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/src/main/webapp/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/webapp/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/webapp/favicon.ico
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/webapp/flogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/webapp/flogo.png
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/webapp/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/webapp/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/webapp/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/webapp/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/samples/javase-rest-jetty/webapp/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/javase-rest-jetty/webapp/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/samples/javase-rest/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
--------------------------------------------------------------------------------
/samples/javase-rest/.settings/org.eclipse.core.resources.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | encoding//src/main/java=UTF-8
3 | encoding//src/test/java=UTF-8
4 | encoding/=UTF-8
5 |
--------------------------------------------------------------------------------
/samples/javase-rest/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
3 | org.eclipse.jdt.core.compiler.compliance=1.7
4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5 | org.eclipse.jdt.core.compiler.source=1.7
6 |
--------------------------------------------------------------------------------
/samples/javase-rest/.settings/org.eclipse.m2e.core.prefs:
--------------------------------------------------------------------------------
1 | activeProfiles=
2 | eclipse.preferences.version=1
3 | resolveWorkspaceProjects=true
4 | version=1
5 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
7 |
8 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/scripts/vendor/js-verson:
--------------------------------------------------------------------------------
1 | jquery.userMgt.js 1.4.1 April 27, 2014
2 | jquery-easyui 1.4.1
3 | jquery.min.js 2.1.3
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/black/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #000;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/splitbutton.css:
--------------------------------------------------------------------------------
1 | .s-btn:hover .m-btn-line,
2 | .s-btn-active .m-btn-line,
3 | .s-btn-plain-active .m-btn-line {
4 | display: inline-block;
5 | }
6 | .l-btn:hover .s-btn-downarrow,
7 | .s-btn-active .s-btn-downarrow,
8 | .s-btn-plain-active .s-btn-downarrow {
9 | border-style: solid;
10 | border-color: #cccccc;
11 | border-width: 0 0 0 1px;
12 | }
13 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/black/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/bootstrap/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #D4D4D4;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/bootstrap/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/default/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #95B8E7;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/default/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/gray/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #D3D3D3;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/gray/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/back.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/cancel.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/clear.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/cut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/cut.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/edit_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/edit_add.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/edit_remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/edit_remove.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/filesave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/filesave.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/filter.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/help.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/large_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/large_chart.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/large_clipart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/large_clipart.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/large_picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/large_picture.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/large_shapes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/large_shapes.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/large_smartart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/large_smartart.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/lock.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/man.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/mini_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/mini_add.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/mini_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/mini_edit.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/mini_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/mini_refresh.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/no.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/no.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/ok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/ok.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/pencil.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/print.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/print.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/redo.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/reload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/reload.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/search.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/sum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/sum.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/tip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/tip.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/icons/undo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/icons/undo.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-blue/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #c3d9e0;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-blue/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-gray/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #abafb8;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-gray/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-green/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #b1c242;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-green/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-orange/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #d4a375;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-orange/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro-red/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #f6c1bc;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro-red/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-easyui/src/main/webapp/themes/metro/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #ddd;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-easyui/src/main/webapp/themes/metro/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/WebContent/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Class-Path:
3 |
4 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/iframe/index.html:
--------------------------------------------------------------------------------
1 |
2 |
iframe loading 示例
3 |
4 |
7 |
8 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/msg/index.html:
--------------------------------------------------------------------------------
1 |
2 | 消息
3 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/progress/index.html:
--------------------------------------------------------------------------------
1 |
2 |
progress 示例
3 |
3秒后自动关闭
4 |
8 |
9 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-blue_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-blue_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-gray_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-gray_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-green_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-green_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-orange_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-orange_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-red_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/apps/theme/images/theme-metro-red_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/apps/video/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
video 视频播放器
5 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/home.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Main
6 |
7 |
8 | Main
9 |
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/edit_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/edit_48.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/music_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/music_48.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/remove_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/remove_48.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/user_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/user_48.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/vedio_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/left-menu/vedio_48.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/logo.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-blue_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-blue_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-gray_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-gray_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-green_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-green_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-orange_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-orange_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-red_90_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/images/theme/theme-metro-red_90_50.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
7 |
8 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/scripts/vendor/js-verson:
--------------------------------------------------------------------------------
1 | jquery.userMgt.js 1.4.1 April 27, 2014
2 | jquery-easyui 1.4.1
3 | jquery.min.js 2.1.3
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/black/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #000;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/black/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #D4D4D4;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/bootstrap/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/default/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #95B8E7;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/default/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/gray/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #D3D3D3;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/gray/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/back.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/cancel.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/clear.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/cut.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/cut.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/edit_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/edit_add.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/edit_remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/edit_remove.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/filesave.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/filesave.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/filter.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/help.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_chart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_chart.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_clipart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_clipart.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_picture.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_picture.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_shapes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_shapes.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_smartart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/large_smartart.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/lock.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/man.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/man.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/mini_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/mini_add.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/mini_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/mini_edit.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/mini_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/mini_refresh.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/no.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/no.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/ok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/ok.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/pencil.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/print.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/print.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/redo.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/reload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/reload.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/search.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/sum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/sum.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/tip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/tip.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/icons/undo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/icons/undo.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #c3d9e0;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-blue/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #abafb8;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-gray/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #b1c242;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-green/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #d4a375;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-orange/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #f6c1bc;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro-red/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #404040;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/filebox.css:
--------------------------------------------------------------------------------
1 | .filebox .textbox-value {
2 | vertical-align: top;
3 | position: absolute;
4 | top: 0;
5 | left: -5000px;
6 | }
7 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/accordion_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/accordion_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/blank.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/calendar_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/calendar_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/combo_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/combo_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/datagrid_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/datagrid_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/datebox_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/datebox_arrow.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/layout_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/layout_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/linkbutton_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/linkbutton_bg.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/loading.gif
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/menu_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/menu_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/messager_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/messager_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/pagination_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/pagination_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/panel_tools.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/panel_tools.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/searchbox_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/searchbox_button.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/slider_handle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/slider_handle.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/spinner_arrows.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/spinner_arrows.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/tabs_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/tabs_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/tree_icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/tree_icons.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/validatebox_warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/waylau/rest-in-action/7cc9dacc75c9c73726e5cb8152710cf91f67da6c/samples/jersey-spring-shiro/src/main/webapp/themes/metro/images/validatebox_warning.png
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/numberbox.css:
--------------------------------------------------------------------------------
1 | .numberbox {
2 | border: 1px solid #ddd;
3 | margin: 0;
4 | padding: 0 2px;
5 | vertical-align: middle;
6 | }
7 | .textbox {
8 | padding: 0;
9 | }
10 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/themes/metro/validatebox.css:
--------------------------------------------------------------------------------
1 | .validatebox-invalid {
2 | border-color: #ffa8a8;
3 | background-color: #fff3f3;
4 | color: #000;
5 | }
6 |
--------------------------------------------------------------------------------
/samples/jersey-spring-shiro/src/main/webapp/unauthorized.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | unauthorized
6 |
7 |
8 | unauthorized.html
9 |
10 |
--------------------------------------------------------------------------------
/samples/jersey-webapp/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
--------------------------------------------------------------------------------
/samples/jersey-webapp/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World!
4 |
7 |
8 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/samples/parameter-annotations/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
6 | _book
7 |
--------------------------------------------------------------------------------
/samples/servlet-container/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
6 | _book
7 |
--------------------------------------------------------------------------------
/samples/servlet-container/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Jersey RESTful Web Application!
4 | Jersey resource
5 |
Visit www.waylau.com
6 | for more information on Jersey!
7 |
8 |
9 |
--------------------------------------------------------------------------------
/samples/simple-service-webapp/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
6 | _book
7 |
--------------------------------------------------------------------------------
/samples/simple-service-webapp/src/main/webapp/index.jsp:
--------------------------------------------------------------------------------
1 |
2 |
3 | Jersey RESTful Web Application!
4 | Jersey resource
5 |
Visit Project Jersey website
6 | for more information on Jersey!
7 |
8 |
9 |
--------------------------------------------------------------------------------
/samples/simulation-curd/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
6 | _book
7 |
--------------------------------------------------------------------------------
/samples/sse-real-time-web/.gitignore:
--------------------------------------------------------------------------------
1 | /target/
2 | /.idea/
3 | /.settings/
4 | .classpath
5 | .project
--------------------------------------------------------------------------------