org.vx68k.bitbucket.api.client.Commit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitbucket-api-client Show documentation
Show all versions of bitbucket-api-client Show documentation
This project builds a client API implementation for Bitbucket
Cloud.
/*
* Commit
* Copyright (C) 2015 Nishimura Software Studio
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
* for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package org.vx68k.bitbucket.api.client;
import java.util.logging.Level;
import javax.json.JsonObject;
/**
* Commit in a Bitbucket repository.
* @author Kaz Nishimura
* @since 3.0
*/
public class Commit extends Entity {
/**
* Type value for commits.
*/
private static final String COMMIT_TYPE = "commit";
/**
* Constructs this object without initialization.
*/
public Commit() {
super(COMMIT_TYPE);
ClientUtilities.getLogger().finer("Creating a blank Commit");
}
/**
* Constructs this object from a JSON object.
* @param jsonObject JSON object that represents a commit.
*/
public Commit(JsonObject jsonObject) {
super(jsonObject);
if (!getType().equals(COMMIT_TYPE)) {
throw new IllegalArgumentException("Not user");
}
ClientUtilities.getLogger().log(
Level.INFO,
"Parsing JSON object (\"" + COMMIT_TYPE + "\"): {0}",
jsonObject);
// TODO: Add fields.
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy