public BinarySecret createBinarySecret(byte[] rawValue, String type) {
return new BinarySecretImpl(rawValue, type);
}
public BinarySecret createBinarySecret(Element elem) throws WSTrustException {
return new BinarySecretImpl(BinarySecretImpl.fromElement(elem));
}