Package org.jclouds.chef.domain
Class Resource
- java.lang.Object
-
- org.jclouds.chef.domain.Resource
-
public class Resource extends Object
Resource object.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Resource.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Resource.Builder
builder()
boolean
equals(Object obj)
byte[]
getChecksum()
String
getName()
String
getPath()
String
getSpecificity()
URI
getUrl()
int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
Resource
@ConstructorProperties({"name","url","checksum","path","specificity"}) protected Resource(String name, URI url, byte[] checksum, String path, String specificity)
-
-
Method Detail
-
builder
public static Resource.Builder builder()
-
getName
public String getName()
-
getUrl
public URI getUrl()
-
getChecksum
public byte[] getChecksum()
-
getPath
public String getPath()
-
getSpecificity
public String getSpecificity()
-
-