(String name)
| 2728 | |
| 2729 | |
| 2730 | @Override |
| 2731 | public Part getPart(String name) throws IOException, IllegalStateException, ServletException { |
| 2732 | for (Part part : getParts()) { |
| 2733 | if (name.equals(part.getName())) { |
| 2734 | return part; |
| 2735 | } |
| 2736 | } |
| 2737 | return null; |
| 2738 | } |
| 2739 | |
| 2740 | |
| 2741 | // ------------------------------------------------------ Protected Methods |