1 package com.sslexplorer.extensions; 2 3 import com.sslexplorer.boot.AbstractPropertyClass; 4 import com.sslexplorer.boot.AbstractPropertyKey; 5 6 11 public class ApplicationParameters extends AbstractPropertyClass { 12 13 16 public final static String NAME = "applicationParameters"; 17 18 21 public ApplicationParameters() { 22 super(NAME, true); 23 } 24 25 28 protected String retrievePropertyImpl(AbstractPropertyKey key) 29 throws IllegalArgumentException { 30 throw new UnsupportedOperationException ("Not yet supported."); 31 } 32 33 36 protected String storePropertyImpl(AbstractPropertyKey key, String value) 37 throws IllegalArgumentException { 38 throw new UnsupportedOperationException ("Not yet supported."); 39 } 40 41 } 42 | Popular Tags |