Package liquibase.sdk.resource
Class MockResource
- java.lang.Object
-
- liquibase.resource.AbstractResource
-
- liquibase.sdk.resource.MockResource
-
- All Implemented Interfaces:
Resource
public class MockResource extends AbstractResource
-
-
Constructor Summary
Constructors Constructor Description MockResource(String path, String content)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
exists()
InputStream
openInputStream()
Opens an input stream to read from this resource.Resource
resolve(String other)
Resolve the given path against this resource.Resource
resolveSibling(String other)
Resolves the given path against this resource's parent path.-
Methods inherited from class liquibase.resource.AbstractResource
equals, getPath, getUri, hashCode, isWritable, openOutputStream, resolvePath, resolveSiblingPath, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface liquibase.resource.Resource
openOutputStream
-
-
-
-
Method Detail
-
exists
public boolean exists()
- Returns:
- true if the resource defined by this object currently exists.
-
resolve
public Resource resolve(String other)
Description copied from interface:Resource
Resolve the given path against this resource. If other is an empty path then this method trivially returns this path. Otherwise this method considers this resource to be a directory and resolves the given path against this resource. Even if "other" begins with a `/`, the returned resource should be relative to this resource.
-
resolveSibling
public Resource resolveSibling(String other)
Description copied from interface:Resource
Resolves the given path against this resource's parent path. This is useful where a file name needs to be replaced with another file name. For example, suppose that the name separator is "/" and a path represents "dir1/dir2/foo", then invoking this method with the Path "bar" will result in the Path "dir1/dir2/bar". If other is an empty path then this method returns this path's parent. Even if "other" begins with a `/`, the returned resource should be relative to this resource.
-
openInputStream
public InputStream openInputStream() throws IOException
Description copied from interface:Resource
Opens an input stream to read from this resource.- Throws:
IOException
- if there is an error reading from the resource, including if the resource does not exist or cannot be read.
-
-