Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/javax/sql/testng/util/StubSQLXML.java
41153 views
1
/*
2
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
package util;
24
25
import java.io.InputStream;
26
import java.io.OutputStream;
27
import java.io.Reader;
28
import java.io.Writer;
29
import java.sql.SQLException;
30
import java.sql.SQLXML;
31
import javax.xml.transform.Result;
32
import javax.xml.transform.Source;
33
34
public class StubSQLXML implements SQLXML{
35
36
@Override
37
public void free() throws SQLException {
38
throw new UnsupportedOperationException("Not supported yet.");
39
}
40
41
@Override
42
public InputStream getBinaryStream() throws SQLException {
43
throw new UnsupportedOperationException("Not supported yet.");
44
}
45
46
@Override
47
public OutputStream setBinaryStream() throws SQLException {
48
throw new UnsupportedOperationException("Not supported yet.");
49
}
50
51
@Override
52
public Reader getCharacterStream() throws SQLException {
53
throw new UnsupportedOperationException("Not supported yet.");
54
}
55
56
@Override
57
public Writer setCharacterStream() throws SQLException {
58
throw new UnsupportedOperationException("Not supported yet.");
59
}
60
61
@Override
62
public String getString() throws SQLException {
63
throw new UnsupportedOperationException("Not supported yet.");
64
}
65
66
@Override
67
public void setString(String value) throws SQLException {
68
throw new UnsupportedOperationException("Not supported yet.");
69
}
70
71
@Override
72
public <T extends Source> T getSource(Class<T> sourceClass) throws SQLException {
73
throw new UnsupportedOperationException("Not supported yet.");
74
}
75
76
@Override
77
public <T extends Result> T setResult(Class<T> resultClass) throws SQLException {
78
throw new UnsupportedOperationException("Not supported yet.");
79
}
80
81
}
82
83