Methods Summary |
---|
public void | addModel(java.net.URI modelUri, PolicySourceModel model)
getModels().put(modelUri,model);
|
public boolean | containsModel(java.net.URI modelUri)
return getModels().containsKey(modelUri);
|
public static com.sun.xml.ws.policy.sourcemodel.PolicySourceModelContext | createContext()
return new PolicySourceModelContext();
|
private java.util.Map | getModels()
if (null==policyModels) {
policyModels = new HashMap<URI,PolicySourceModel>();
}
return policyModels;
|
PolicySourceModel | retrieveModel(java.net.URI modelUri)
return getModels().get(modelUri);
|
PolicySourceModel | retrieveModel(java.net.URI modelUri, java.net.URI digestAlgorithm, java.lang.String digest)
// TODO: implement
throw new UnsupportedOperationException();
|
public java.lang.String | toString()
return policyModels.toString();
|